29 lines
605 B
Bash
Executable File
29 lines
605 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# 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
|
|
|
|
# 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/nomad/nomad/${VERSION}/${ARCHIVE_NAME}"
|
|
done
|
|
|
|
exit 0
|