#!/bin/bash set -e set -o pipefail JOB=$1 TAG=$2 if [ ! -z "${AWS_ACCESS_KEY_ID}" ] && [ ! -z "${AWS_SECRET_ACCESS_KEY}" ] ; then gzip --stdout node_modules/mapbox-gl-test-suite/render-tests/index.html | \ aws s3 cp --acl public-read --content-encoding gzip --content-type text/html \ - s3://mapbox/mapbox-gl-native/render-tests/$JOB/index.html echo http://mapbox.s3.amazonaws.com/mapbox-gl-native/render-tests/$JOB/index.html fi PACKAGE_JSON_VERSION=$(node -e "console.log(require('./package.json').version)") if [[ $TAG == node-v${PACKAGE_JSON_VERSION} ]]; then ./node_modules/.bin/node-pre-gyp package ./node_modules/.bin/node-pre-gyp publish info fi