summaryrefslogtreecommitdiff
path: root/platform/ios/scripts/trigger-external-deploy-steps.sh
blob: c1ee7c783fc0291f38e98697b50325a88a910541 (plain)
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
#!/usr/bin/env bash

set -euo pipefail

function step { >&2 echo -e "\033[1m\033[36m* $@\033[0m"; }
function finish { >&2 echo -en "\033[0m"; }
trap finish EXIT

SDK_FLAVOR=${SDK_FLAVOR:-"maps"}

step "Triggering automated site and documentation generation for ${SDK_FLAVOR} SDK ${VERSION_TAG}"

request_body="{
  \"request\": {
    \"message\": \"[${SDK_FLAVOR}] ${VERSION_TAG} automated site and documentation generation\",
    \"config\": {
      \"merge_mode\": \"deep_merge\",
      \"env\": {
        \"SDK_FLAVOR\": \"${SDK_FLAVOR}\",
        \"RELEASE_TAG\": \"${VERSION_TAG}\"
      }
    }
  }
}"

step "Making request…"

curl -s -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Travis-API-Version: 3" \
  -H "Authorization: token ${TRAVISCI_API_TOKEN}" \
  -d "${request_body}" \
  https://api.travis-ci.com/repo/mapbox%2Fios-sdk/requests