Skip to content

Commit

Permalink
Improving releasing.md
Browse files Browse the repository at this point in the history
  • Loading branch information
thamara committed Sep 21, 2023
1 parent f3664ad commit abf37b5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
Guide on how to release Time to Leave:

First, make sure the `changelog.md` displays the correct new version (`## X.Y.Z (in development)`).

1. Update `package.json` to the release version (no -dev)
2. `git commit -am "Release vX.Y.Z"`
3. `git tag -a stable/vX.Y.Z`
4. `git push origin main stable/vX.Y.Z`

This will trigger the release action which creates a draft for the release notes.

If something goes wrong:
1. Delete tag locally: `git tag --delete stable/v3.0.0`
2. Delete tag on remote: `git push --delete origin stable/v3.0.0`

Try again :)

After publushing the release:

1. Bump `changelog.md` to developer version (version + 1)-dev. Use the following template:
Expand Down

0 comments on commit abf37b5

Please sign in to comment.