We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f51fa87 commit 67278dcCopy full SHA for 67278dc
docs/releasing.md
@@ -0,0 +1,20 @@
1
+# How to create a release of `git-when-merged`
2
+
3
+1. Create a release tag:
4
5
+ VERSION=1.2.3
6
+ git tag -s -m "git-when-merged version $VERSION" v$VERSION
7
8
+2. Create a test release (without uploading):
9
10
+ tox -e publish
11
12
+3. Push the tag:
13
14
+ git push origin v$VERSION
15
16
+4. Create and upload a release:
17
18
+ tox -e publish -- upload
19
20
+See [this PR](https://github.com/mhagger/git-when-merged/pull/22) for more information.
0 commit comments