From b1b329d03da736da7a443273079e3aa420e82e7a Mon Sep 17 00:00:00 2001 From: Koenraad Verheyden Date: Sat, 27 Feb 2021 13:25:34 +0100 Subject: [PATCH] Remove redundant documentation The release procedure is already described in CONTRIBUTING.md --- doc/release-procedure.md | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 doc/release-procedure.md diff --git a/doc/release-procedure.md b/doc/release-procedure.md deleted file mode 100644 index 4c8d5f9..0000000 --- a/doc/release-procedure.md +++ /dev/null @@ -1,12 +0,0 @@ -# Release procedure - -`gha-buildevents` follows [the recommendation from the GitHub Actions team](https://github.com/actions/toolkit/blob/master/docs/action-versioning.md#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. - -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 -```