Skip to content
This repository was archived by the owner on Feb 14, 2018. It is now read-only.

Commit ab8420b

Browse files
committed
Add handy 'git tag' command
to Packaging instructions
1 parent 221a926 commit ab8420b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,13 @@ When a new version of the script needs to be released, the following should be d
391391
> **NOTE**: These steps can only performed by GitHub users with commit access to the project.
392392
393393
1. Increment the [Semver](http://semver.org/) version in the [`version.txt`](version.txt) file as needed.
394-
1. Create a new git tag with the same version value (prefiexed with `v`) and push it to GitHub.
394+
1. Create a new git tag with the same version value (prefiexed with `v`):
395+
396+
```bash
397+
git tag v$(cat version.txt)
398+
```
399+
400+
1. Push the tag to GitHub.
395401
1. Create a new GitHub release in [releases](releases) that's associated with the above tag.
396402
1. Run the following command to create a release package archive and then upload it to the release created above:
397403

0 commit comments

Comments
 (0)