open-nomad/scripts/dist.sh

49 lines
1.3 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2015-06-01 11:46:21 +00:00
set -e
# Get the version from the command line
VERSION=$1
if [ -z "${VERSION}" ]; then
2016-06-14 05:41:51 +00:00
echo "Please specify a version. (format: 0.4.0-rc1)"
2015-06-01 11:46:21 +00:00
exit 1
fi
# 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-06-01 11:46:21 +00:00
2016-04-14 20:49:20 +00:00
# Generate the tag.
if [ -z "${NOTAG}" ]; then
2016-04-14 20:49:20 +00:00
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
2015-06-01 11:46:21 +00:00
# Zip all the files
2015-09-28 06:21:00 +00:00
rm -rf ./pkg/dist
mkdir -p ./pkg/dist
2017-09-19 17:56:28 +00:00
#find ./pkg -mindepth 1 -maxdepth 1 -type f -exec cp ./pkg/{} ./pkg/dist/nomad_"${VERSION}"_{} \;
for FILENAME in $(find ./pkg -mindepth 1 -maxdepth 1 -type f); do
FILENAME=$(basename $FILENAME)
cp ./pkg/${FILENAME} ./pkg/dist/nomad_${VERSION}_${FILENAME}
done
2015-06-01 11:46:21 +00:00
2015-09-28 06:45:09 +00:00
# Make the checksums
pushd ./pkg/dist
shasum -a256 ./* > "./nomad_${VERSION}_SHA256SUMS"
if [ -z "${NOSIGN}" ]; then
2015-09-28 06:21:00 +00:00
echo "==> Signing..."
gpg --default-key 348FFC4C --detach-sig "./nomad_${VERSION}_SHA256SUMS"
2015-09-28 06:21:00 +00:00
fi
2015-09-28 06:45:09 +00:00
popd
2016-04-14 20:49:20 +00:00
# Upload
if [ -z "${HC_RELEASE}" ]; then
hc-releases upload "${DIR}/pkg/dist" && hc-releases publish
2016-04-14 20:49:20 +00:00
fi