From 588fab8de478125ae822715a48a3813961ecf2af Mon Sep 17 00:00:00 2001 From: AkashRajpurohit Date: Fri, 11 Oct 2024 17:57:59 +0530 Subject: [PATCH] fix: :bug: pass build args as list instead of csv --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e6e231c..2533d74 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -108,7 +108,9 @@ jobs: with: platforms: ${{ matrix.platform }} labels: ${{ steps.meta.outputs.labels }} - build-args: VERSION=${{ env.RELEASE_VERSION }},BUILD=${{ env.NOW }} + build-args: | + VERSION=${{ env.RELEASE_VERSION }} + BUILD=${{ env.NOW }} outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true cache-from: type=gha cache-to: type=gha,mode=max