Skip to content

Commit

Permalink
fix: build-args is list type not CSV type
Browse files Browse the repository at this point in the history
Merge pull request #243 from DFE-Digital/fix-build-args
  • Loading branch information
killij authored Sep 1, 2023
2 parents c794a3c + e59a517 commit d8513a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME_LOWER }}:${{ env.RELEASE_TAG }},${{ env.REGISTRY }}/${{ env.IMAGE_NAME_LOWER }}:latest
labels: ${{ steps.meta.outputs.labels }}
build-args: VCSREF=${{ env.sha_short }},VCSTAG=${{ env.RELEASE_TAG }}
build-args: |
VCSREF=${{ env.sha_short }}
VCSTAG=${{ env.RELEASE_TAG }}
cache-from: type=gha
cache-to: type=gha,mode=max

Expand Down

0 comments on commit d8513a3

Please sign in to comment.