-
Notifications
You must be signed in to change notification settings - Fork 1
/
shippable-deploy.sh
executable file
·43 lines (35 loc) · 1.23 KB
/
shippable-deploy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env bash
# Triggers automatic deploy for certain branches.
#
# Uses Shippable env variables:
# - BRANCH
# - COMMIT
set -e
elementIn () {
local e
for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done
return 1
}
# Automatic deploy allowed for these branches only.
DEPLOY_BRANCHES=("staging" "master")
if ! elementIn "$BRANCH" "${DEPLOY_BRANCHES[@]}" ;
then
echo "Skiping deploy as branch is not allowed for automatic deploy"
fi
# Id of the Shippable project containing the deploy script.
DEPLOY_PROJECT_ID=5804f143e8fe021000f9aed1
# Trigger Shippable to run the deploy project and pass the current project name, branch and latest commit
STATUS=$(curl -s\
-H "Authorization: apiToken $API_TOKEN"\
-H "Content-Type: application/json"\
-d "{\"branchName\":\"master\",\"globalEnv\": {\"PROJECT\":\"rc-subsite\", \"PROJECT_BRANCH\":\"$BRANCH\", \"PROJECT_COMMIT\":\"$COMMIT\", \"PROJECT_REPO_FULL_NAME\":\"$REPO_FULL_NAME\", \"PROJECT_COMMITTER\":\"$COMMITTER\", \"PROJECT_COMPARE_URL\":\"$COMPARE_URL\" }}"\
"https://api.shippable.com/projects/$DEPLOY_PROJECT_ID/newBuild")
echo "$STATUS"
if [[ "$STATUS" == *"runId"* ]]
then
echo "Deploy triggered successfully";
exit 0
else
echo "Failed to trigger deploy.";
exit 1
fi