diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fd9d971..af4f87a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,7 @@ jobs: uses: docker/build-push-action@v2 with: context: ./player_code/cpp - file: compiler.Dockerfile + file: ./player_code/cpp/compiler.Dockerfile push: true tags: ${{ steps.meta-cpp-compiler.outputs.tags }} labels: ${{ steps.meta-cpp-compiler.outputs.labels }} @@ -56,7 +56,7 @@ jobs: uses: docker/build-push-action@v2 with: context: ./player_code/cpp - file: runner.Dockerfile + file: ./player_code/cpp/runner.Dockerfile push: true tags: ${{ steps.meta-cpp-runner.outputs.tags }} labels: ${{ steps.meta-cpp-runner.outputs.labels }} @@ -70,7 +70,7 @@ jobs: uses: docker/build-push-action@v2 with: context: ./player_code/java - file: compiler.Dockerfile + file: ./player_code/java/compiler.Dockerfile push: true tags: ${{ steps.meta-java-compiler.outputs.tags }} labels: ${{ steps.meta-java-compiler.outputs.labels }} @@ -84,7 +84,7 @@ jobs: uses: docker/build-push-action@v2 with: context: ./player_code/java - file: runner.Dockerfile + file: ./player_code/java/runner.Dockerfile push: true tags: ${{ steps.meta-java-runner.outputs.tags }} labels: ${{ steps.meta-java-runner.outputs.labels }} @@ -98,6 +98,7 @@ jobs: uses: docker/build-push-action@v2 with: context: ./player_code/python + file: ./player_code/python/Dockerfile push: true tags: ${{ steps.meta-python.outputs.tags }} labels: ${{ steps.meta-python.outputs.labels }}