From 17111d19287a7eb6032739ee61aff2f7c1f5514c Mon Sep 17 00:00:00 2001 From: Dwi Siswanto Date: Fri, 6 Oct 2023 14:21:00 +0700 Subject: [PATCH] build(ci): fix multiple build-args for release job --- .github/workflows/release-publish.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-publish.yaml b/.github/workflows/release-publish.yaml index 734d0d2..ee55cb4 100644 --- a/.github/workflows/release-publish.yaml +++ b/.github/workflows/release-publish.yaml @@ -59,5 +59,7 @@ jobs: - uses: docker/build-push-action@v4.1.1 with: push: true - build-args: "VERSION=${{ inputs.tag || github.ref_name }},PGO_FILE=${{ github.workspace }}/default.pgo" + build-args: | + VERSION=${{ inputs.tag || github.ref_name }} + PGO_FILE=${{ github.workspace }}/default.pgo tags: "ghcr.io/${{ github.repository }}:latest,ghcr.io/${{ github.repository }}:${{ inputs.tag || github.ref_name }}" \ No newline at end of file