From 7cf2963eef316e66ada7707b3629018054d8942e Mon Sep 17 00:00:00 2001 From: Egor Tarasov <jorres.tarasov@gmail.com> Date: Tue, 5 Nov 2024 22:08:54 +0100 Subject: [PATCH] Properly escape env variables in release workflow (#267) --- .github/workflows/upload-artifacts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/upload-artifacts.yml b/.github/workflows/upload-artifacts.yml index 9e500594..d3a4cc46 100644 --- a/.github/workflows/upload-artifacts.yml +++ b/.github/workflows/upload-artifacts.yml @@ -23,7 +23,7 @@ jobs: uses: mathieudutour/github-tag-action@v6.2 with: tag_prefix: "v" - custom_tag: "$VERSION" + custom_tag: ${{ env.VERSION }} github_token: ${{ github.token }} - name: install-dependencies