From 8c9f676ffbda208bcb47e35ceda75dc7878d0310 Mon Sep 17 00:00:00 2001 From: Oliver Date: Tue, 31 May 2022 14:26:35 +1000 Subject: [PATCH] Fix formatting of 'build-args' parameter for docker build (#3105) * Fix formatting of 'build-args' parameter for docker build * Remove quotes --- .github/workflows/docker.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 9b405ec5e1..d47d3335b3 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -67,7 +67,9 @@ jobs: push: true target: production tags: ${{ env.docker_tags }} - build-args: commit_hash="${{ env.git_commit_hash }}", commit_date="${{ env.git_commit_date }}" + build-args: | + commit_hash=${{ env.git_commit_hash }} + commit_date=${{ env.git_commit_date }} - name: Push to Stable Branch uses: ad-m/github-push-action@master if: env.stable_release == 'true'