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 2b7fb84 commit 7587b80Copy full SHA for 7587b80
.goreleaser.yml
@@ -9,13 +9,15 @@ builds:
9
- goos:
10
- linux
11
- darwin
12
+ - windows
13
goarch:
14
- amd64
15
- "386"
16
goarm:
17
- "6"
18
main: .
19
ldflags: -s -w -X main.VERSION={{.Version}}
20
+ flags: -tags bindata
21
binary: gohttpserver
22
archive:
23
format: tar.gz
.travis.yml
@@ -1,9 +1,14 @@
1
language: go
2
go:
3
- - 1.6
4
- 1.7
5
env:
6
global:
7
- GO15VENDOREXPERIMENT=1
8
script:
- go test -v
+# .travis.yml
+after_success:
+ - go get github.com/jteeuwen/go-bindata/...
+ - go get github.com/elazarl/go-bindata-assetfs/...
+ - test -n "$TRAVIS_TAG" && go-bindata-assetfs -tags bindata res/...
+ - test -n "$TRAVIS_TAG" && curl -sL https://git.io/goreleaser | bash
0 commit comments