Skip to content

Commit 3f8a7ef

Browse files
author
Stephen Gutekanst
committed
update release process to upload a latest release that we can link to
1 parent 8120a35 commit 3f8a7ef

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ go get -u github.com/sourcegraph/src-cli/cmd/src
5252

5353
## Releasing
5454

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`
55+
1. Find the latest version (either via the releases tab on GitHub or via git tags) to determine which version you are releasing.
56+
2. `VERSION=9.9.9 ./release.sh` (replace `9.9.9` with the version you are releasing)
5857

5958
Travis will automatically perform the release.

release.sh

+4
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)