From f2a276e194c5fba3c7ca626c038d49a18effe5ed Mon Sep 17 00:00:00 2001 From: Stefano Ortolani Date: Fri, 15 Sep 2023 12:20:19 +0100 Subject: [PATCH] Fix GitHub action --- .github/workflows/test-build-latest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-build-latest.yml b/.github/workflows/test-build-latest.yml index 94e4a14..ae7d8fe 100644 --- a/.github/workflows/test-build-latest.yml +++ b/.github/workflows/test-build-latest.yml @@ -26,6 +26,6 @@ jobs: # Initialize variables DOCKER_IMG_TAG=`echo "${{ github.sha }}" | cut -c 1-7` # Create the environment - sed -e '/^[[:space:]]*$/d' -e '/[#@]/d' -e 's/\(^[^=]*\)=\(.*\)/\1="\2"/' template.env > env.hcl + sed -e '/^[[:space:]]*$/d' -e '/[#@]/d' -e 's/\"//g' -e 's/\(^[^=]*\)=\(.*\)/\1="\2"/' template.env > env.hcl # Build and Push DOCKER_IMG_TAG=$DOCKER_IMG_TAG docker buildx bake -f docker-bake.hcl -f env.hcl