5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 04:22:32 +00:00
matterbridge/ci/bintray.sh
2017-07-16 21:05:29 +02:00

24 lines
529 B
Bash
Executable File

#!/bin/bash
VERSION=$(git describe --tags)
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
cd ci
cat > deploy.json <<EOF
{
"package": {
"name": "Matterbridge",
"repo": "nightly",
"subject": "42wim"
},
"version": {
"name": "$VERSION-$GOOS-$GOARCH"
},
"files":
[
{"includePattern": "binaries/(.*)", "uploadPattern":"\$1"}
],
"publish": true
}
EOF