diff options
author | Nick Gerace <nickagerace@gmail.com> | 2020-11-11 23:23:08 -0500 |
---|---|---|
committer | Nick Gerace <nickagerace@gmail.com> | 2020-11-11 23:28:28 -0500 |
commit | 85ab670ed4e4bf75d618f45c8572156f3e39cb3d (patch) | |
tree | a217b22b672b1eee36114bfd17a0c17ff2fd56d0 /Makefile | |
parent | b369dbff916f5d27a42044f74d92cd84ed5a16af (diff) | |
download | gfold-85ab670ed4e4bf75d618f45c8572156f3e39cb3d.zip |
Add post release process and contributing info
Add post release process, which includes GitHub releases, crates.io,
and Homebrew. Add contributing information for PRs and issues.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -37,9 +37,10 @@ pre-build: doc: cd $(MAKEPATH); cargo doc --open -tag: +tag-release: cd $(MAKEPATH); git tag $(VERSION) cd $(MAKEPATH); git push --tags origin main + cd $(MAKEPATH); cargo publish fixme: @cd $(MAKEPATH); grep -r \ @@ -61,3 +62,10 @@ release: @printf "[4] Before merging, ensure that publishing works.\n" @printf " cargo publish --dry-run\n" +post-release: + @printf "[1] Run the following command...\n" + @printf " time make tag-release\n" + @printf "[2] Edit the GitHub release page for the new release.\n" + @printf "[3] Check crates.io: https://crates.io/crates/gfold\n" + @printf "[4] Update Homebrew tap version: https://github.com/nickgerace/homebrew-gfold\n" + |