Skip to content

Commit

Permalink
Fix Docker build context
Browse files Browse the repository at this point in the history
  • Loading branch information
flenny committed Dec 13, 2024
1 parent f92fd94 commit 0307cfa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ jobs:
- name: Build and push Docker image (api)
uses: docker/build-push-action@v5
with:
context: ./src/api
context: ./src
file: ./src/api/Dockerfile
push: true
build-args: |
VERSION=${{ env.VERSION }}
Expand Down Expand Up @@ -153,7 +154,8 @@ jobs:
- name: Build and push Docker image (extern-sync)
uses: docker/build-push-action@v5
with:
context: ./src/extern-sync
context: ./src
file: ./src/extern-sync/Dockerfile
push: true
build-args: |
VERSION=${{ env.VERSION }}
Expand Down

0 comments on commit 0307cfa

Please sign in to comment.