Skip to content

Commit af0ffed

Browse files
committed
GitHub: fix build arg enumeration
Apparently multiple build args need to be specified on multiple lines, otherwise they'll be seen as a single arg.
1 parent 91c8198 commit af0ffed

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/docker.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ jobs:
4949
push: true
5050
platforms: linux/amd64,linux/arm64
5151
tags: "${{ env.DOCKER_REPO }}/${{ env.DOCKER_IMAGE }}:${{ env.RELEASE_VERSION }}-path-prefix"
52-
build-args: checkout=${{ env.RELEASE_VERSION }} public_url=/lit
52+
build-args: |
53+
checkout=${{ env.RELEASE_VERSION }}
54+
public_url=/lit
5355
5456
- name: Image digest
5557
run: echo ${{ steps.docker_build.outputs.digest }} ${{ steps.docker_build2.outputs.digest }}

0 commit comments

Comments
 (0)