Skip to content

Commit 1b57c37

Browse files
authored
docs: add commands to contirbuting guide for updating v{major} tags
1 parent 76ce4de commit 1b57c37

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

CONTRIBUTING.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,11 @@ To get your PR merged as fast as possible, please make sure you have done the fo
4747

4848
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.
4949

50-
After the exact version tag is created, update the `v{major}` tag to the latest major version.
50+
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.
51+
52+
```bash
53+
$ git checkout master
54+
$ git fetch --tags && git pull
55+
$ git tag --force v{major}
56+
$ git push --force --tags
57+
```

0 commit comments

Comments
 (0)