From db929fedf17bff3d024a2e2c03f6ddb161bb9aca Mon Sep 17 00:00:00 2001 From: "g.trantham" Date: Tue, 27 Sep 2022 09:51:48 -0500 Subject: [PATCH] fix string interpolation --- .github/workflows/release-on-pr-merge-to-main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-on-pr-merge-to-main.yml b/.github/workflows/release-on-pr-merge-to-main.yml index 7da6314..1eb5db9 100644 --- a/.github/workflows/release-on-pr-merge-to-main.yml +++ b/.github/workflows/release-on-pr-merge-to-main.yml @@ -116,7 +116,7 @@ jobs: cd ../ dname=`basename ${GITHUB_REPOSITORY}` echo "Creating ZIP archive: ${ZIPNAME}" - sed -e '/^#/d' -e 's!^!./${dname}/!' -e 's/\s*$//' < ${dname}/environment_setup/manifest.txt > /tmp/manifest.txt + sed -e '/^#/d' -e "s!^!./${dname}/!" -e 's/\s*$//' < ${dname}/environment_setup/manifest.txt > /tmp/manifest.txt tar --files-from /tmp/manifest.txt -cvf - | gzip > /tmp/${ZIPNAME}