From f6dcda9c8e5107025bce18b9b6504eb0e50e3916 Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Sat, 26 Jun 2021 11:14:17 -0700 Subject: [PATCH] Release 3.0.1 (#8178) Fix release packager issue. Seems when variable set in $GITHUB_ENV quotation marks are not removed, resulting in URLs with http://ddd.dd/blah/"3.0.1"/release and JSON entries with the same quotation problem. --- .github/workflows/tag-to-draft-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tag-to-draft-release.yml b/.github/workflows/tag-to-draft-release.yml index e64972398..51240262d 100644 --- a/.github/workflows/tag-to-draft-release.yml +++ b/.github/workflows/tag-to-draft-release.yml @@ -29,7 +29,7 @@ jobs: run: | # Sets an environment variable used in the next steps TRAVIS_TAG="$(git describe --exact-match --tags)" - echo "TRAVIS_TAG=\"${TRAVIS_TAG}\"" >> $GITHUB_ENV + echo "TRAVIS_TAG=${TRAVIS_TAG}" >> $GITHUB_ENV - name: Build package JSON env: TRAVIS_BUILD_DIR: ${{ github.workspace }}