2013-06-19 22:20:52 -07:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
2014-09-02 15:13:55 -07:00
|
|
|
# Get the version from the command line
|
|
|
|
VERSION=$1
|
|
|
|
if [ -z $VERSION ]; then
|
|
|
|
echo "Please specify a version."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Make sure we have a bintray API key
|
|
|
|
if [ -z $BINTRAY_API_KEY ]; then
|
|
|
|
echo "Please set your bintray API key in the BINTRAY_API_KEY env var."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2013-06-19 22:44:02 -07:00
|
|
|
# Get the parent directory of where this script is.
|
2013-06-19 22:20:52 -07:00
|
|
|
SOURCE="${BASH_SOURCE[0]}"
|
|
|
|
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
|
2013-06-19 22:44:02 -07:00
|
|
|
DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
|
|
|
|
|
|
|
|
# Change into that dir because we expect that
|
|
|
|
cd $DIR
|
2013-06-19 22:20:52 -07:00
|
|
|
|
2014-09-02 15:13:55 -07:00
|
|
|
# Zip all the files
|
|
|
|
rm -rf ./pkg/dist
|
2013-11-18 10:28:45 -08:00
|
|
|
mkdir -p ./pkg/dist
|
2014-09-02 15:13:55 -07:00
|
|
|
for FILENAME in $(find ./pkg -mindepth 1 -maxdepth 1 -type f); do
|
|
|
|
FILENAME=$(basename $FILENAME)
|
|
|
|
cp ./pkg/${FILENAME} ./pkg/dist/packer_${VERSION}_${FILENAME}
|
2013-06-19 22:20:52 -07:00
|
|
|
done
|
2013-06-19 22:40:30 -07:00
|
|
|
|
2013-06-24 15:13:59 -07:00
|
|
|
# Make the checksums
|
2013-11-18 10:28:45 -08:00
|
|
|
pushd ./pkg/dist
|
2014-09-02 15:13:55 -07:00
|
|
|
shasum -a256 * > ./packer_${VERSION}_SHA256SUMS
|
2013-06-24 15:13:59 -07:00
|
|
|
popd
|
|
|
|
|
2014-09-02 15:13:55 -07:00
|
|
|
# Upload
|
|
|
|
for ARCHIVE in ./pkg/dist/*; do
|
|
|
|
ARCHIVE_NAME=$(basename ${ARCHIVE})
|
|
|
|
|
|
|
|
echo Uploading: $ARCHIVE_NAME
|
|
|
|
curl \
|
|
|
|
-T ${ARCHIVE} \
|
|
|
|
-umitchellh:${BINTRAY_API_KEY} \
|
|
|
|
"https://api.bintray.com/content/mitchellh/packer/packer/${VERSION}/${ARCHIVE_NAME}"
|
|
|
|
done
|
|
|
|
|
2013-06-20 00:01:12 -07:00
|
|
|
exit 0
|