Skip to content

Commit

Permalink
fix(workflows): build args now set as proper new lines
Browse files Browse the repository at this point in the history
  • Loading branch information
beniaminmunteanu committed Oct 7, 2024
1 parent 33f2316 commit d41d37d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ jobs:
push: true
file: ${{ matrix.package.path }}/Dockerfile.prod
build-args: |
${{ matrix.package.identifier == 'boutique:frontend' && format('VITE_API_BASE_URL={0}\nVITE_CURRENCY={1}', matrix.package.api_base_url, matrix.package.currency) }}
${{ matrix.package.identifier == 'boutique:frontend' && format('VITE_API_BASE_URL={0}', matrix.package.api_base_url) }}
${{ matrix.package.identifier == 'boutique:frontend' && format('VITE_CURRENCY={0}', matrix.package.currency) }}
tags: ghcr.io/${{ github.repository_owner }}/${{ matrix.package.name }}:${{ github.ref_name }},ghcr.io/${{ github.repository_owner }}/${{ matrix.package.name }}:latest

generate-release:
Expand Down

0 comments on commit d41d37d

Please sign in to comment.