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 d6c997e commit 26c0ede
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:
push:
# pull_request:
Expand Down Expand Up @@ -162,7 +162,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 @@ -175,7 +175,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 26c0ede

Please sign in to comment.