Skip to content

Commit 1a913cf

Browse files
committed
Fix Docker build action's build-args
1 parent 94c8fc8 commit 1a913cf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ jobs:
7373
with:
7474
file: Dockerfile
7575
context: .
76-
build-args: VITE_APP_VERSION=${{ needs.setup.outputs.version }},VITE_APP_BUILD=${{ needs.setup.outputs.build }}
76+
build-args: |
77+
VITE_APP_BUILD=${{ needs.setup.outputs.build }}
78+
VITE_APP_VERSION=${{ needs.setup.outputs.version }}
7779
push: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') }}
7880
platforms: linux/amd64,linux/arm64
7981
tags: ${{ steps.meta.outputs.tags }}

0 commit comments

Comments
 (0)