mirror of
https://github.com/Luzifer/yaml-vault.git
synced 2025-01-02 02:01:19 +00:00
37 lines
882 B
Bash
37 lines
882 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
VERSION=$(git describe --tags --exact-match)
|
||
|
REPO=$(basename $(pwd))
|
||
|
ARCHS="linux/386 linux/amd64 linux/arm darwin/amd64 darwin/386 windows/386 windows/amd64"
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ -z "${TRAVIS_TAG}" ]; then
|
||
|
echo "Not executing for non tag, but this is no failure."
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
if [ -z "${VERSION}" ]; then
|
||
|
echo "No tag present, stopping build now."
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
if [ -z "${GITHUB_TOKEN}" ]; then
|
||
|
echo "Please set \$GITHUB_TOKEN environment variable"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
set -x
|
||
|
|
||
|
go get github.com/aktau/github-release
|
||
|
go get github.com/mitchellh/gox
|
||
|
|
||
|
github-release release --user Jimdo --repo ${REPO} --tag ${VERSION} --name ${VERSION} || true
|
||
|
|
||
|
gox -ldflags="-X main.version=${VERSION}" -osarch="${ARCHS}"
|
||
|
sha256sum ${REPO}_* > SHA256SUMS
|
||
|
|
||
|
for file in ${REPO}_* SHA256SUMS; do
|
||
|
github-release upload --user Jimdo --repo ${REPO} --tag ${VERSION} --name ${file} --file ${file}
|
||
|
done
|