Skip to content

Commit

Permalink
docs: add commands to contirbuting guide for updating v{major} tags
Browse files Browse the repository at this point in the history
  • Loading branch information
byCedric authored Jun 17, 2021
1 parent 76ce4de commit 1b57c37
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,11 @@ To get your PR merged as fast as possible, please make sure you have done the fo

To release a new version for Github Actions, we have to create a new release in Github. You can run the `Release` workflow to generate a new version, changelog, and Github release.

After the exact version tag is created, update the `v{major}` tag to the latest major version.
After the exact version tag is created, update the `v{major}` tag to the latest major version. Make sure you are on the default branch at the commit of versioning.

```bash
$ git checkout master
$ git fetch --tags && git pull
$ git tag --force v{major}
$ git push --force --tags
```

0 comments on commit 1b57c37

Please sign in to comment.