1
1
mirror of https://github.com/primer/css.git synced 2024-09-21 13:51:52 +03:00
css/script/cibuild

29 lines
764 B
Plaintext
Raw Normal View History

2017-07-08 05:59:11 +03:00
#!/bin/bash
2017-07-08 01:57:33 +03:00
set -e
2017-07-08 02:00:22 +03:00
# --yes gets passed in by .travis.yml,
# which makes this easier to test locally
args=$@
2017-07-11 01:48:41 +03:00
2017-07-21 02:49:22 +03:00
echo "TRAVIS_ env vars:"
echo "EVENT_TYPE: $TRAVIS_EVENT_TYPE"
echo "BRANCH: $TRAVIS_BRANCH"
echo "PULL_REQUEST_BRANCH: $TRAVIS_PULL_REQUEST_BRANCH"
exit
2017-07-14 02:36:27 +03:00
# always publish a pr release if this is a PR build
if [[ "$TRAVIS_EVENT_TYPE" = "pull_request" ]]; then
2017-07-21 01:21:59 +03:00
script/release-pr $args
2017-07-08 01:57:33 +03:00
# merges to dev build a release candidate
elif [[ "$TRAVIS_BRANCH" =~ "^release-" ]]; then
2017-07-21 01:21:59 +03:00
script/release-candidate $args
2017-07-11 01:48:41 +03:00
# publish a release when we merge to master
elif [[ "$TRAVIS_BRANCH" = "master" ]]; then
2017-07-21 01:21:59 +03:00
script/release $args
2017-07-08 01:57:33 +03:00
else
2017-07-21 01:21:59 +03:00
echo "⚠️ This isn't a PR and '$TRAVIS_BRANCH' isn't a release branch."
2017-07-08 01:57:33 +03:00
exit 1
fi
2017-07-21 01:21:59 +03:00
script/notify