-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jeff Lanzarotta
committed
Aug 13, 2024
1 parent
68c58d0
commit fcf3a65
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
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 |