1
1
mirror of https://github.com/primer/css.git synced 2024-09-21 05:39:15 +03:00
css/script/cibuild
2017-07-13 14:55:50 -07:00

28 lines
958 B
Bash
Executable File

#!/bin/bash
set -e
# --yes gets passed in by .travis.yml,
# which makes this easier to test locally
args=${@:1}
# always publish a canary release if this is a PR build
if [[ $TRAVIS_EVENT_TYPE = pull_request ]]; then
echo "🐦 Publishing canary version..."
npm run release-canary -- ${args}
version=`jq -r .version modules/primer-css/package.json`
echo "📡 Transmitting release success for primer-css@${version} ..."
TRAVIS_COMMIT=$TRAVIS_PULL_REQUEST_SHA \
commit-status success npm/publish/pr "${version}"
# merges to dev build a release candidate
elif [[ $TRAVIS_BRANCH = dev ]]; then
echo "👌 Publishing release candidate..."
echo npm run release-candidate -- ${args}
# publish a release when we merge to master
elif [[ $TRAVIS_BRANCH = master ]]; then
echo "📦 Publishing latest release!"
echo npm run release -- ${args}
else
echo "⚠️ This isn't a PR and '${TRAVIS_BRANCH}' isn't a release branch."
exit 1
fi