Skip to content

Commit

Permalink
Added working directory to help fix actions build failure (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyramic authored Oct 7, 2024
1 parent 418998d commit e5d8edb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build_dagster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile_LA
working-directory: ./dagster
file: ./Dockerfile_dagster
push: true
tags: ${{ secrets.DOCKERHUB_DAGSTER_SERVER_URL }}:latest
labels: ${{ steps.meta.outputs.labels }}
5 changes: 3 additions & 2 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile_LA
working-directory: ./dagster
file: ./Dockerfile_dagster
push: true
tags: ${{ secrets.DOCKERHUB_DAGSTER_SERVER_URL }}:latest
tags: ${{ secrets.DOCKERHUB_DAGSTER_SERVER_URL }}:${{ github.ref_name }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit e5d8edb

Please sign in to comment.