Skip to content

Commit

Permalink
fix: fixed release script to release on latest tag
Browse files Browse the repository at this point in the history
  • Loading branch information
lquixada committed Jul 2, 2023
1 parent fcc4a38 commit 0ed3511
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release
Expand Up @@ -3,7 +3,7 @@
# Get the git tag that triggered the workflow build
workflow_version=${GITHUB_REF_NAME:1} # Removed the "v" prefix
# Get version major being handled by the current workflow
workflow_major=$(echo $version | cut -d. -f1)
workflow_major=$(echo $workflow_version | cut -d. -f1)
workflow_track="latest-v${workflow_major}.x"

# Get latest version on npm registry
Expand Down

0 comments on commit 0ed3511

Please sign in to comment.