Skip to content

Commit f6dcda9

Browse files
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.
1 parent af513f6 commit f6dcda9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/tag-to-draft-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: |
3030
# Sets an environment variable used in the next steps
3131
TRAVIS_TAG="$(git describe --exact-match --tags)"
32-
echo "TRAVIS_TAG=\"${TRAVIS_TAG}\"" >> $GITHUB_ENV
32+
echo "TRAVIS_TAG=${TRAVIS_TAG}" >> $GITHUB_ENV
3333
- name: Build package JSON
3434
env:
3535
TRAVIS_BUILD_DIR: ${{ github.workspace }}

0 commit comments

Comments
 (0)