-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Koenraad Verheyden
committed
Aug 26, 2020
1 parent
f0db288
commit 559cd89
Showing
3 changed files
with
53 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Release procedure | ||
|
||
`gha-buildevents` follows [the recommendation from the GitHub Actions team][actions-versioning], namely that each release has a semantic version (i.e. `v1.0.1`). We also provide a major version tag (i.e. `v1`) that binds to the latest semantic version. | ||
|
||
[actions-versioning]: https://github.com/actions/toolkit/blob/master/docs/action-versioning.md#versioning | ||
|
||
Follow these steps to create a new release: | ||
- create a new release from the Relases page. | ||
- assign it a tag with semantic version. | ||
- create or update the major version tag so it points to the latest release: | ||
``` | ||
git tag -fa v1 -m "Update v1 tag" | ||
git push origin v1 --force | ||
``` |