Skip to content

Commit eae2795

Browse files
committed
docs/RELEASING.md: instructions for making a release
1 parent 7fb52e4 commit eae2795

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

docs/RELEASING.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Creating releases of `git-sizer`
2+
3+
1. Create a release tag and push it to GitHub:
4+
5+
VERSION=1.2.3
6+
git tag -a v$VERSION
7+
git push origin v$VERSION
8+
9+
2. Build the release for the major platforms:
10+
11+
make releases VERSION=$VERSION
12+
13+
The output is a bunch of ZIP files written to directory `releases/`.
14+
15+
3. Go to the [releases page](https://github.com/github/git-sizer/releases).
16+
17+
4. Click on "Draft a new release".
18+
19+
5. Select the tag, add the required information, and upload the zip files.
20+
21+
6. Click "Publish release".

0 commit comments

Comments
 (0)