From 033ba6e56de71590f496d708f9eca6587f757cbe Mon Sep 17 00:00:00 2001 From: Don McCurdy Date: Tue, 1 Oct 2024 18:03:20 -0400 Subject: [PATCH] fix(ci): Fix tag validation --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2da4ea5..e81b3a9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: with: result-encoding: string script: | - const gitTag = '${{ steps.version.outputs.tag }}' + const gitTag = '${{ steps.version.outputs.TAG_NAME }}' console.log(`git tag: ${gitTag}`) if (gitTag.match(/^v\d+\.\d+\.\d+$/)) { distTag = 'latest'