5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 03:12:31 +00:00
matterbridge/ci/bintray.sh
2017-07-16 20:57:32 +02:00

25 lines
522 B
Bash
Executable File

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