From d41d37d97d52cf846f8b1bf4dd3a9eebd026585d Mon Sep 17 00:00:00 2001 From: beniaminmunteanu Date: Mon, 7 Oct 2024 18:09:45 +0300 Subject: [PATCH] fix(workflows): build args now set as proper new lines --- .github/workflows/build-publish.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-publish.yaml b/.github/workflows/build-publish.yaml index ae0974f08..a21f241b1 100644 --- a/.github/workflows/build-publish.yaml +++ b/.github/workflows/build-publish.yaml @@ -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: