From 9856110023bc2fc633059b3ebefbe0b90b7876b1 Mon Sep 17 00:00:00 2001 From: Jeremy4040 <88025755+Jeremy4040@users.noreply.github.com> Date: Wed, 7 Jun 2023 14:46:44 +0530 Subject: [PATCH] Update cli_release.yaml Changed deprecated set output command in previous commit and gave double quotes to env value (GITHUB_TAG) in this commit --- .github/workflows/cli_release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cli_release.yaml b/.github/workflows/cli_release.yaml index 6cfeb36..3bc08ba 100644 --- a/.github/workflows/cli_release.yaml +++ b/.github/workflows/cli_release.yaml @@ -30,7 +30,7 @@ jobs: - name: Get release name from tag id: release - run: echo "name=$(echo ${GITHUB_REF#refs/tags/})" >> $GITHUB_TAG + run: echo "name=$(echo ${GITHUB_REF#refs/tags/})" >> "$GITHUB_TAG" env: GITHUB_REF: ${{ github.ref }}