diff --git a/README.md b/README.md index 2310710e..323fd5b9 100644 --- a/README.md +++ b/README.md @@ -47,8 +47,8 @@ Accounts to one of the supported bridges # Installing ## Binaries -Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/) * Latest stable release [v0.16.1](https://github.com/42wim/matterbridge/releases/tag/v0.16.1) +* Development releases (follows master) can be downloaded [here](https://dl.bintray.com/42wim/nightly/) ## Building Go 1.6+ is required. Make sure you have [Go](https://golang.org/doc/install) properly installed, including setting up your [GOPATH] (https://golang.org/doc/code.html#GOPATH) diff --git a/ci/bintray.sh b/ci/bintray.sh index a7a658fd..e20235c0 100755 --- a/ci/bintray.sh +++ b/ci/bintray.sh @@ -2,9 +2,9 @@ go version |grep go1.8 || exit VERSION=$(git describe --tags) mkdir ci/binaries -GOOS=windows GOARCH=amd64 go build -x -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-win64.exe -GOOS=linux GOARCH=amd64 go build -x -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-linux64 -GOOS=linux GOARCH=arm go build -x -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-linux-arm +GOOS=windows GOARCH=amd64 go build -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-win64.exe +GOOS=linux GOARCH=amd64 go build -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-linux64 +GOOS=linux GOARCH=arm go build -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-linux-arm cd ci cat > deploy.json <