Skip to content

Commit 7cf2963

Browse files
authored
Properly escape env variables in release workflow (#267)
1 parent 18830f0 commit 7cf2963

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/upload-artifacts.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: mathieudutour/github-tag-action@v6.2
2424
with:
2525
tag_prefix: "v"
26-
custom_tag: "$VERSION"
26+
custom_tag: ${{ env.VERSION }}
2727
github_token: ${{ github.token }}
2828

2929
- name: install-dependencies

0 commit comments

Comments
 (0)