Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 23 additions & 19 deletions .github/workflows/ci-deploy-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,29 +92,33 @@ jobs:
--tag $ECR_REGISTRY/$ECR_REPOSITORY:$BRANCH \
--file ./Dockerfile ./

- name: Kick off Terraform deploy in sysops/ if not live
id: sysops-deploy
- name: Kick off Terraform QA deploy in sysops/
id: sysops-deploy-qa
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/main')
run: |
BRANCH=$(echo "${GITHUB_REF#refs/*/}" | sed 's/.*\///')
if [[ "$BRANCH" != master ]]; then
curl \
curl --fail-with-body \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.SYSOPS_RW_GITHUB_TOKEN }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/meedan/sysops/actions/workflows/deploy_${{ github.event.repository.name }}.yml/dispatches \
-d '{"ref": "master", "inputs": {"git_sha": "${{ github.sha }}", "type": "push"}}'

- name: Kick off Terraform Live deploy in sysops/
id: sysops-deploy-live
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
run: |
RELEASE_TAG=$(echo "${GITHUB_REF#refs/*/}" | sed 's/.*\///')
curl --fail-with-body \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.SYSOPS_RW_GITHUB_TOKEN }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/meedan/sysops/actions/workflows/deploy_${{ github.event.repository.name }}.yml/dispatches \
-d '{"ref": "master", "inputs": {"git_sha": "${{ github.sha }}", "branch": "'$BRANCH'"}}'
fi
-d '{"ref": "master", "inputs": {"image_tag": "'$RELEASE_TAG'", "type": "tag"}}'

- name: Send Slack Notification
id: slack-notify
if: ${{ always() }}
uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
author_name: 'Github Actions'
icon_emoji: ':octocat:'
fields: repo,message,author # selectable (default: repo,message)
env:
GITHUB_TOKEN: ${{ secrets.CONFIGURATOR_TOKEN }} # optional
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required
- name: Reset cache
id: reset-cache
if: ${{ success() || failure() }}
run: |
rm -rf /tmp/.buildx-cache
Loading