open-consul/scripts/dist.sh

56 lines
1.3 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2013-12-19 19:22:08 +00:00
set -e
2014-04-16 23:53:26 +00:00
# Get the version from the command line
VERSION=$1
if [ -z $VERSION ]; then
echo "Please specify a version."
exit 1
fi
2013-12-19 19:22:08 +00:00
# Get the parent directory of where this script is.
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
# Change into that dir because we expect that
cd $DIR
2015-10-22 18:16:01 +00:00
# Generate the tag
if [ -z $NOTAG ]; then
echo "==> Tagging..."
git commit --allow-empty -a --gpg-sign=348FFC4C -m "Release v$VERSION"
git tag -a -m "Version $VERSION" -s -u 348FFC4C "v${VERSION}" master
fi
2014-05-20 19:48:17 +00:00
2015-10-22 18:16:01 +00:00
# Generate the UI
if [ -z $NOUI ]; then
echo "==> Generating Consul UI..."
make -f ui/Makefile dist
fi
2014-05-01 18:01:54 +00:00
2015-10-22 18:16:01 +00:00
# Zip all the files
rm -rf ./pkg/dist
mkdir -p ./pkg/dist
for FILENAME in $(find ./pkg -mindepth 1 -maxdepth 1 -type f); do
FILENAME=$(basename $FILENAME)
cp ./pkg/${FILENAME} ./pkg/dist/consul_${VERSION}_${FILENAME}
2013-12-19 19:22:08 +00:00
done
# Make the checksums
2015-10-22 18:16:01 +00:00
pushd ./pkg/dist
shasum -a256 * > ./consul_${VERSION}_SHA256SUMS
if [ -z $NOSIGN ]; then
echo "==> Signing..."
gpg --default-key 348FFC4C --detach-sig ./consul_${VERSION}_SHA256SUMS
fi
2013-12-19 19:22:08 +00:00
popd
2015-10-26 21:30:29 +00:00
# Upload
if [ -z $NORELEASE ]; then
echo "==> Uploading binaries..."
hc-releases -upload=./pkg/dist
fi
exit 0