updated ci-build.sh
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Paul 2020-04-07 23:47:40 +02:00
parent 88adfa691e
commit 0d20b2f019

View File

@ -1,11 +1,15 @@
#!/bin/bash
echo $DRONE_TAG
echo $GOOS
echo $GOARCH
if [[ ! -z $DRONE_TAG && ! -z $GOOS && ! -z $GOARCH ]]
then
mkdir dist
go build -o dist/qrz-${DRONE_TAG}-${GOOS}-${GOARCH} -mod=vendor -ldflags='-s -w' cmd/qrz/*.go
cd dist
tar -czvf qrz-${DRONE_TAG}-${GOOS}-${GOARCH}.tar.gz
tar -czvf qrz-${DRONE_TAG}-${GOOS}-${GOARCH}.tar.gz qrz-${DRONE_TAG}-${GOOS}-${GOARCH}
else
echo "Required variables not set"
fi