mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-26 22:20:18 +01:00
BINARY RELEASES
This commit is contained in:
parent
0b27adba9d
commit
f00209973e
1 changed files with 22 additions and 0 deletions
22
.travis.yml
22
.travis.yml
|
@ -18,3 +18,25 @@ script:
|
||||||
- go build -v .
|
- go build -v .
|
||||||
- go vet ./...
|
- go vet ./...
|
||||||
- go test ./...
|
- go test ./...
|
||||||
|
|
||||||
|
before_deploy:
|
||||||
|
- mkdir -p release
|
||||||
|
- "GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -ldflags -a -tags netgo -ldflags '-s -w -extldflags -static' -o release/transfersh-$TRAVIS_TAG-linux-amd64"
|
||||||
|
- "GOOS=linux GOARCH=arm GOARM=7 CGO_ENABLED=0 go build -ldflags -a -tags netgo -ldflags '-s -w -extldflags -static' -o release/transfersh-$TRAVIS_TAG-linux-armv7"
|
||||||
|
- "GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build -ldflags -a -tags netgo -ldflags '-s -w -extldflags -static' -o release/transfersh-$TRAVIS_TAG-darwin-amd64"
|
||||||
|
- "GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -ldflags -a -tags netgo -ldflags '-s -w -extldflags -static' -o release/transfersh-$TRAVIS_TAG-win-amd64.exe"
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
provider: releases
|
||||||
|
api_key:
|
||||||
|
secure: cOuMGyvrl/9GX3TZFL+Vq++2Bv5Hlb3VfXSYONfeAj+1AXI3Y+tPruy/XnWpa1MUxkvFuIhea3sUAiKfwhHip9csCmMUhDJtaTU9apsxRkyF/OFrWb7/FlbnqYuAwnp91ImvtSlnubg2VHTjhBA6ycNQF7WZcJEMVMsAtC/nSY4=
|
||||||
|
file:
|
||||||
|
- "release/transfersh-$TRAVIS_TAG-linux-amd64"
|
||||||
|
- "release/transfersh-$TRAVIS_TAG-linux-armv7"
|
||||||
|
- "release/transfersh-$TRAVIS_TAG-darwin-amd64"
|
||||||
|
- "release/transfersh-$TRAVIS_TAG-win-amd64.exe"
|
||||||
|
skip_cleanup: true
|
||||||
|
on:
|
||||||
|
tags: true
|
||||||
|
go: tip
|
||||||
|
overwrite: true
|
||||||
|
|
Loading…
Reference in a new issue