We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0e67e6 commit 70f8b34Copy full SHA for 70f8b34
.travis.yml
@@ -11,9 +11,6 @@ before_script:
11
script:
12
- go test -v $(glide novendor)
13
after_success:
14
- - ./semantic-release -ghr -vf -dry
15
- - export VERSION=$(cat .version)
16
- - gox -os="linux darwin windows openbsd" -ldflags="-s -w -X main.SRVERSION=$VERSION" -output="bin/{{.Dir}}_v"$VERSION"_{{.OS}}_{{.Arch}}" ./cmd/semantic-release/
17
- - ghr $(cat .ghr) bin/
+ - ./release
18
notifications:
19
email: false
release
@@ -0,0 +1,8 @@
1
+#!/bin/bash
2
+
3
+set -e
4
5
+./semantic-release -ghr -vf
6
+export VERSION=$(cat .version)
7
+gox -ldflags="-s -w -X main.SRVERSION=$VERSION" -output="bin/{{.Dir}}_v"$VERSION"_{{.OS}}_{{.Arch}}" ./cmd/semantic-release/
8
+ghr $(cat .ghr) bin/
0 commit comments