How to Create Tags - ZTL-ARTCC/Current_Website GitHub Wiki

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 --tag

EXAMPLE:

$ git checkout master && git pull
$ git tag -a "v2022.09.26" -m "Deploy 09/26/2022"
$ git push --tag
⚠️ **GitHub.com Fallback** ⚠️