Skip to content

Commit

Permalink
bugfix build-args passing to docker-build-push action 🆘
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas.gehrig committed Nov 7, 2023
1 parent 50cc5fc commit 329263f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-user-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ jobs:
file: docker/user/Dockerfile
context: .
push: false
build-args: GIT_REV=${{ env.gitrev }},BUILD=${{ env.build }}
build-args: |
GIT_REV=${{ env.gitrev }}
BUILD=${{ env.build }}
load: true
tags: ${{ steps.meta.outputs.tags }}
labels: test
Expand All @@ -111,6 +113,8 @@ jobs:
file: docker/user/Dockerfile
context: .
push: true
build-args: GIT_REV=${{ env.gitrev }},BUILD=${{ env.build }}
build-args: |
GIT_REV=${{ env.gitrev }}
BUILD=${{ env.build }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 329263f

Please sign in to comment.