Skip to content

Commit

Permalink
fix(ci): Fix tag validation
Browse files Browse the repository at this point in the history
  • Loading branch information
donmccurdy committed Oct 1, 2024
1 parent 669f802 commit 033ba6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 033ba6e

Please sign in to comment.