1
0
Fork 0
mirror of synced 2024-10-18 01:48:56 -04:00
ultimate-vim/sources_non_forked/bufexplorer/how_to_release.txt
2024-10-06 10:25:50 +02:00

16 lines
438 B
Text

https://goreleaser.com/quick-start/
To make a release...
1. Make changes.
2. Commit and push changes.
3. git tag -a v7.4.27 -m "Release v7.4.27."
4. git push origin v7.4.27
5. goreleaser release --clean
6. Go to github and make the release.
If something happens and the tag is messed up, you will need to delete the
local and remote tag and release again. To delete the tag:
1. git tag -d v7.4.27
2. git push --delete origin v7.4.27