File: RELEASING.md

package info (click to toggle)
git-sizer 1.3.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 300 kB
  • sloc: sh: 98; makefile: 80
file content (21 lines) | stat: -rw-r--r-- 555 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Creating releases of `git-sizer`

1.  Create a release tag and push it to GitHub:

        VERSION=1.2.3
        git tag -as v$VERSION
        git push origin v$VERSION

2.  Build the release for the major platforms:

        make releases VERSION=$VERSION

    The output is a bunch of ZIP files written to directory `releases/`.

3.  Go to the [releases page](https://github.com/github/git-sizer/releases).

4.  Click on "Draft a new release".

5.  Select the tag, add the required information, and upload the zip files.

6.  Click "Publish release".