mirror of
https://github.com/primer/css.git
synced 2024-11-30 01:04:04 +03:00
12 lines
286 B
Bash
Executable File
12 lines
286 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
branch=$TRAVIS_PULL_REQUEST_BRANCH
|
|
event=$TRAVIS_EVENT_TYPE
|
|
|
|
# only publish canary releases on non release or master branches
|
|
if [[ "$event" = "pull_request" ]] && [[ !("$branch" =~ ^release-.*) ]] && [[ !("$branch" = "master") ]];
|
|
then
|
|
script/release-pr --yes
|
|
fi
|