Skip to content

Change name for challenge (#18) #66

Change name for challenge (#18)

Change name for challenge (#18) #66

Workflow file for this run

name: build
on:
pull_request:
push:
branches: [ main ]
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build estimator
uses: docker/build-push-action@v6
with:
file: Dockerfile.estimator
load: true
tags: ${{ env.TEST_TAG }}
-
name: Build tester
uses: docker/build-push-action@v6
with:
file: Dockerfile.tester
load: true
tags: ${{ env.TEST_TAG }}