Releases for this repository are managed by a github action, and are triggered when a tag is pushed to the repository.
Each release contains a tar archive of the repository at the point in which the release was created.
To create a release:
-
Create a new branch at the position you want to create a release (e.g. branch, commit).
-
Create a tag at that branch.
-
Push the tag to the upstream repository.
git fetch upstream main
git checkout -b v0.1 upstream/main
git tag v0.1 v0.1
git push upstream tag v0.1