Skip to content
This repository has been archived by the owner on Mar 9, 2023. It is now read-only.

Commit

Permalink
fix: Add relative file path for dockerfiles (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptainIRS committed Feb 26, 2022
1 parent dba4049 commit 18d25b9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}

0 comments on commit 18d25b9

Please sign in to comment.