19 lines
508 B
YAML
19 lines
508 B
YAML
.post_deploy_template:
|
|
stage: post_deploy
|
|
image: $ESP_ENV_IMAGE
|
|
|
|
sync_support_status:
|
|
extends:
|
|
- .post_deploy_template
|
|
- .rules:master:push
|
|
tags: [ brew, github_sync ]
|
|
needs:
|
|
- push_to_github
|
|
cache: []
|
|
before_script: []
|
|
script:
|
|
- curl --fail --request POST --form token="$IDF_STATUS_TRIG_TOKEN" --form ref="$IDF_STATUS_BRANCH" --form "variables[UPLOAD_TO_S3]=true" "$IDF_STATUS_TRIG_URL"
|
|
environment:
|
|
name: sync_support_status_production
|
|
deployment_tier: production
|