1
1
mirror of https://github.com/primer/css.git synced 2024-11-30 11:17:05 +03:00
css/script/cibuild
2017-07-11 13:09:27 -07:00

22 lines
649 B
Bash
Executable File

#!/bin/bash
set -e
ci_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 -- ${ci_args}
# merges to dev build a release candidate
elif [[ $TRAVIS_BRANCH = dev ]]; then
echo "👌 Publishing release candidate..."
npm run release-candidate -- ${ci_args}
# publish a release when we merge to master
elif [[ $TRAVIS_BRANCH = master ]]; then
echo "📦 Publishing latest release!"
npm run release -- ${ci_args}
else
echo "⚠️ This isn't a PR and '${TRAVIS_BRANCH}' isn't a release branch."
exit 1
fi