Skip to content

Commit

Permalink
Update HOW-TO-RELEASE.md - push commit + tag
Browse files Browse the repository at this point in the history
  • Loading branch information
olsen232 authored Feb 9, 2023
1 parent c2012b6 commit b9da06c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions HOWTO-RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,14 @@ This process only supports a single release branch (master). It'll need to be ex

8. Update `CHANGELOG.md` to refer to the new version (ie, make sure it doesn't say "UNRELEASED" next to all the latest changes.)

9. Commit with a message like "Release v1.2.3"
9. Commit with a message like "Release v1.2.3", and push the commit.

10. Tag the release with the Git tag version format and push it:
```console
$ git commit -m "Release v1.2.3"
$ git push
```

10. Tag the release with the Git tag version format and push the tag.

```console
$ git tag v1.2.3
Expand Down

0 comments on commit b9da06c

Please sign in to comment.