Fix release workflow tag creation

This commit is contained in:
Alex Rodionov 2024-05-20 13:44:06 -07:00
parent 57947c1f02
commit c4b6956617

View file

@ -30,6 +30,8 @@ jobs:
git config user.email github-actions@github.com
- run: git commit -am "Release ${{ inputs.tag }}"
- run: git push
- run: git tag -a ${{ inputs.tag }} -m "Release ${{ inputs.tag }}"
- run: git push --tags
- run: gh release create ${{ inputs.tag }} --generate-notes
env:
GH_TOKEN: ${{ github.token }}