From 2bea83c05479b4b20950b4151cdc66f9713e1218 Mon Sep 17 00:00:00 2001 From: John Sudol <24583161+johnsudol@users.noreply.github.com> Date: Mon, 12 Dec 2022 11:33:33 -0500 Subject: [PATCH] Update artifact-tests.yml add single quotes to the env variables --- .github/workflows/artifact-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/artifact-tests.yml b/.github/workflows/artifact-tests.yml index ad3a9257..ac56e4dd 100644 --- a/.github/workflows/artifact-tests.yml +++ b/.github/workflows/artifact-tests.yml @@ -55,8 +55,8 @@ jobs: - name: Create files that will be uploaded run: | mkdir artifact-path - echo ${{ env.non-gzip-artifact-content }} > artifact-path/world.txt - echo ${{ env.gzip-artifact-content }} > artifact-path/gzip.txt + echo '${{ env.non-gzip-artifact-content }}' > artifact-path/world.txt + echo '${{ env.gzip-artifact-content }}' > artifact-path/gzip.txt touch artifact-path/empty.txt - name: Add additional logging