summaryrefslogtreecommitdiffstats
path: root/ci/bintray.sh
blob: 8bb70176ce278383320ed42f45567226c6aff290 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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