Skip to content

Commit

Permalink
Add releasing docs (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
pellared authored Apr 16, 2024
1 parent 8a6cbf4 commit 38d97f1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Release Process

1. Add and push a signed tag:

```sh
TAG='v<version>'
COMMIT='<commit-sha>'
git tag -s -m $TAG $TAG $COMMIT
git push upstream $TAG
```

1. Create a GitHib Release named `v<version>` with `v<version>` tag.

The release description should include all the release notes
from the [`CHANGELOG.md`](CHANGELOG.md) for this release.

0 comments on commit 38d97f1

Please sign in to comment.