Skip to content

Commit

Permalink
fix: tag should be the version without the 'v' (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nemikolh authored Jul 9, 2024
1 parent 3792aa9 commit d292d0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
git tag v${{ steps.resolve-release-version.outputs.version }}
git push origin v${{ steps.resolve-release-version.outputs.version }}
git tag ${{ steps.resolve-release-version.outputs.version }}
git push origin ${{ steps.resolve-release-version.outputs.version }}
prepare_cli_release:
name: Prepare Release for CLI
Expand Down

0 comments on commit d292d0b

Please sign in to comment.