From 8f9d0f1cb53916667d0a8c68873826610db4f502 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A1lint=20M=C3=B3r=C3=A1sz?= Date: Fri, 8 Mar 2024 09:03:48 +0100 Subject: [PATCH] ci: fix: docker/build-push-action build-args syntax --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7fcaab..ed392dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -148,7 +148,9 @@ jobs: with: context: . file: Kemkas.Web/Composite.Dockerfile - build-args: FE_TAG=${{ env.GITHUB_SHA_SHORT }},BE_TAG=${{ env.GITHUB_SHA_SHORT }} + build-args: | + FE_TAG=${{ env.GITHUB_SHA_SHORT }} + BE_TAG=${{ env.GITHUB_SHA_SHORT }} cache-from: type=gha cache-to: type=gha,mode=max push: false