-
-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add RELEASE.md to describe the release process
- Loading branch information
Showing
1 changed file
with
25 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,25 @@ | ||
# How to make a release | ||
|
||
Check master is building properly | ||
|
||
Check on master | ||
|
||
git checkout master | ||
|
||
Tag | ||
|
||
git tag -s v2.0.x -m "Release v2.0.x" | ||
|
||
Push the signed tag | ||
|
||
git push --follow-tags | ||
|
||
Go to https://github.com/ncw/swift/tags and check the tag is there. | ||
|
||
From there click create a release. | ||
|
||
Use the generate release notes button and publish. | ||
|
||
Possibly use this instead? | ||
|
||
gh release create v2.0.x --generate-notes |