From 7043dfeecaba773311359c59c218e1e644aa5bc3 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 24 Jun 2013 14:56:53 -0700 Subject: [PATCH] scripts: temporarily password protect ZIPs, upload script --- scripts/dist.sh | 2 +- scripts/upload.sh | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100755 scripts/upload.sh diff --git a/scripts/dist.sh b/scripts/dist.sh index 9c99a2dcc..457e77c34 100755 --- a/scripts/dist.sh +++ b/scripts/dist.sh @@ -79,7 +79,7 @@ for PLATFORM in $(find ./pkg/${VERSIONDIR} -mindepth 1 -maxdepth 1 -type d); do ( pushd ${PLATFORM} - zip ${DIR}/pkg/${VERSIONDIR}/dist/${ARCHIVE_NAME}.zip ./* + zip -P hashipacker ${DIR}/pkg/${VERSIONDIR}/dist/${ARCHIVE_NAME}.zip ./* popd ) & done diff --git a/scripts/upload.sh b/scripts/upload.sh new file mode 100755 index 000000000..56d0730f6 --- /dev/null +++ b/scripts/upload.sh @@ -0,0 +1,33 @@ +#!/bin/bash +set -e + +# 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 + +# 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 + +for ARCHIVE in ./pkg/${VERSION}/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