mirror of
https://github.com/Luzifer/vault-unseal.git
synced 2024-12-22 22:01:20 +00:00
Add auto-publishing to Github
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
4f9b5d79c6
commit
83a8e1cd91
3 changed files with 13 additions and 34 deletions
10
.repo-runner.yaml
Normal file
10
.repo-runner.yaml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
image: "reporunner/golang-alpine"
|
||||||
|
checkout_dir: /go/src/github.com/Luzifer/vault2env
|
||||||
|
|
||||||
|
commands:
|
||||||
|
- make publish
|
||||||
|
|
||||||
|
environment:
|
||||||
|
CGO_ENABLED: 0
|
3
Makefile
Normal file
3
Makefile
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
publish:
|
||||||
|
curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh
|
||||||
|
bash golang.sh
|
34
publish.sh
34
publish.sh
|
@ -1,34 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
VERSION=$(git describe --tags --exact-match)
|
|
||||||
REPO=$(basename $(pwd))
|
|
||||||
ARCHS="linux/386 linux/amd64 linux/arm darwin/amd64 darwin/386"
|
|
||||||
|
|
||||||
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}"
|
|
||||||
for file in ${REPO}_*; do
|
|
||||||
github-release upload --user Jimdo --repo ${REPO} --tag ${VERSION} --name ${file} --file ${file}
|
|
||||||
done
|
|
Loading…
Reference in a new issue