Skip to content

Files

Latest commit

author
Koenraad Verheyden
May 6, 2020
34188f1 · May 6, 2020

History

History
14 lines (11 loc) · 651 Bytes

release-procedure.md

File metadata and controls

14 lines (11 loc) · 651 Bytes

Release procedure

tfe-run follows the recommendation from the GitHub Actions team, 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