From 0929185d0490b6556b79df8be22fed698054cf5a Mon Sep 17 00:00:00 2001 From: Hamish Coleman Date: Sun, 31 Oct 2021 14:40:05 +0000 Subject: [PATCH] Fix tagtype logic, shell quotes need to be correct for shell vars --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d082e3b..84e4692 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -498,7 +498,9 @@ jobs: steps: - name: Get Tag Type run: | - echo '::set-output name=TAGTYPE::$(git cat-file -t $GITHUB_REF)' + TAGTYPE=$(git cat-file -t $GITHUB_REF) + echo TAGTYPE=$TAGTYPE + echo "::set-output name=TAGTYPE::$TAGTYPE" - name: Fetch all Artifacts if: steps.get_tagtype.outputs.TAGTYPE == 'tag'