You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
matterbridge/ci/bintray.sh

25 lines
522 B
Bash

#!/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