5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 04:22:32 +00:00
matterbridge/ci/bintray.sh

24 lines
529 B
Bash
Raw Normal View History

2017-07-16 18:57:32 +00:00
#!/bin/bash
VERSION=$(git describe --tags)
2017-07-16 19:05:29 +00:00
mkdir ci/binaries
go build -x -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-$GOOS-$GOARCH
2017-07-16 18:57:32 +00:00
cd ci
cat > deploy.json <<EOF
{
"package": {
"name": "Matterbridge",
"repo": "nightly",
"subject": "42wim"
},
"version": {
"name": "$VERSION-$GOOS-$GOARCH"
},
"files":
[
2017-07-16 19:05:29 +00:00
{"includePattern": "binaries/(.*)", "uploadPattern":"\$1"}
2017-07-16 18:57:32 +00:00
],
"publish": true
}
EOF