We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8120a35 commit 3f8a7efCopy full SHA for 3f8a7ef
README.md
@@ -52,8 +52,7 @@ go get -u github.com/sourcegraph/src-cli/cmd/src
52
53
## Releasing
54
55
-1. Find the latest version (either via the releases tab on GitHub or via git tags).
56
-2. `git tag 1.0.0 -a -m 'release v1.0.0'` (replace `1.0.0` with the version you are releasing)
57
-3. `git push --tags`
+1. Find the latest version (either via the releases tab on GitHub or via git tags) to determine which version you are releasing.
+2. `VERSION=9.9.9 ./release.sh` (replace `9.9.9` with the version you are releasing)
58
59
Travis will automatically perform the release.
release.sh
@@ -0,0 +1,4 @@
1
+set -ex
2
+git tag $VERSION -a -m "release v$VERSION"
3
+git tag latest -f -a -m "release v$VERSION"
4
+git push -f --tags
0 commit comments