Skip to content

Commit

Permalink
Fix docker build stage
Browse files Browse the repository at this point in the history
  • Loading branch information
ll-nick committed Nov 14, 2024
1 parent 3b93de6 commit 5ffeaf7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Bump version and create release
name: Bump version, create and test release, and push Docker images
on:
pull_request:
types:
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
uses: docker/build-push-action@v6
with:
build-args: |
VERSION=${{ env.VERSION }}
VERSION=${{ needs.compute-version.outputs.new_tag }}
context: demo
file: demo/Dockerfile
push: true
Expand All @@ -174,7 +174,7 @@ jobs:
uses: docker/build-push-action@v6
with:
build-args: |
VERSION=${{ env.VERSION }}
VERSION=${{ needs.compute-version.outputs.new_tag }}
context: demo
file: demo/Dockerfile
push: true
Expand Down

0 comments on commit 5ffeaf7

Please sign in to comment.