-
Notifications
You must be signed in to change notification settings - Fork 6
How to Create Tags
Ian Cowan edited this page Nov 18, 2024
·
2 revisions
All tags and releases should be created using the create-release action. This page is retained for reference only.
How to Create Tags
To create a tag and push it to the remote master, use the following commands locally:$ git checkout master && git pull
$ git tag -a "TAG_NAME" -m "TAG_DESCRIPTION"
$ git push --tagEXAMPLE:
$ git checkout master && git pull
$ git tag -a "v2022.09.26" -m "Deploy 09/26/2022"
$ git push --tag