Deploy Relayers to Testnet - by @MakMuftic #60
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The Licensed Work is (c) 2022 Sygma | |
# SPDX-License-Identifier: LGPL-3.0-only | |
name: Sygma Testnet | |
on: | |
release: | |
types: | |
- published | |
run-name: Deploy Relayers to Testnet - ${{ inputs.release_tag }} by @${{ github.actor }} | |
env: | |
ENVIRONMENT: 'TESTNET' | |
REGISTRY: 'ghcr.io' | |
TAG: 'stable' | |
jobs: | |
push: | |
name: push | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- name: checkout the source code | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: login to ghcr | |
id: ghcr | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GHCR_TOKEN }} | |
- name: build / tag / push docker image into ghcr | |
id: build-and-push-tag | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
push: true | |
tags: ${{ env.REGISTRY }}/${{ github.repository }}:${{ env.TAG }},${{ env.REGISTRY }}/${{ github.repository }}:${{ github.ref_name }} | |
- name: slack notify | |
uses: 8398a7/action-slack@v3 | |
with: | |
status: ${{ job.status }} | |
fields: repo,message,commit,author,action,job,eventName,ref,workflow # selectable (default: repo,message) | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required | |
if: always() | |
######################## region 1 ######################## | |
deploy: | |
needs: push | |
name: deploy | |
runs-on: ubuntu-latest | |
environment: testnet | |
strategy: | |
matrix: | |
relayer_id: [0, 1] | |
env: | |
AWS_TESTNET: '${{ secrets.AWS_TESTNET }}' | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- name: checkout ecs repo | |
uses: actions/checkout@v4 | |
with: | |
repository: sygmaprotocol/devops | |
token: ${{ secrets.GHCR_TOKEN }} | |
- name: render jinja2 templates to task definition json files | |
uses: cuchi/[email protected] | |
with: | |
template: 'relayers/ecs/task_definition-${{ env.ENVIRONMENT }}.j2' | |
output_file: 'relayers/ecs/task_definition-${{ matrix.relayer_id }}_${{ env.ENVIRONMENT }}.json' | |
data_format: json | |
variables: | | |
relayerId=${{ matrix.relayer_id }} | |
awsAccountId=${{ env.AWS_TESTNET }} | |
awsRegion=${{ secrets.AWS_REGION_1 }} | |
awsEfs=${{ secrets.TESTNET_EFS_1 }} | |
imageTag=${{ github.ref_name }} | |
- name: configure aws credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::${{ env.AWS_TESTNET }}:role/github-actions-${{ env.ENVIRONMENT }}-chainbridge | |
aws-region: ${{ secrets.AWS_REGION_1 }} | |
role-session-name: GithubActions | |
- name: deploy task definition | |
uses: aws-actions/amazon-ecs-deploy-task-definition@v1 | |
with: | |
task-definition: 'relayers/ecs/task_definition-${{ matrix.relayer_id }}_${{ env.ENVIRONMENT }}.json' | |
service: 'relayer-${{ matrix.relayer_id }}-service-${{ env.ENVIRONMENT }}' | |
cluster: 'relayer-${{ env.ENVIRONMENT }}' | |
wait-for-service-stability: true | |
- name: slack notify | |
uses: 8398a7/action-slack@v3 | |
with: | |
status: ${{ job.status }} | |
fields: repo,message,commit,author,action,job,eventName,ref,workflow # selectable (default: repo,message) | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required | |
if: always() | |
######################## region 3 ######################## | |
deploy_reg_3: | |
needs: push | |
name: deploy region 3 | |
runs-on: ubuntu-latest | |
environment: testnet | |
strategy: | |
matrix: | |
relayer_id: [2] | |
env: | |
AWS_TESTNET: '${{ secrets.AWS_TESTNET }}' | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- name: checkout ecs repo | |
uses: actions/checkout@v4 | |
with: | |
repository: sygmaprotocol/devops | |
token: ${{ secrets.GHCR_TOKEN }} | |
- name: render jinja2 templates to task definition json files | |
uses: cuchi/[email protected] | |
with: | |
template: 'relayers/ecs/task_definition-${{ env.ENVIRONMENT }}.j2' | |
output_file: 'relayers/ecs/task_definition-${{ matrix.relayer_id }}_${{ env.ENVIRONMENT }}.json' | |
data_format: json | |
variables: | | |
relayerId=${{ matrix.relayer_id }} | |
awsAccountId=${{ env.AWS_TESTNET }} | |
awsRegion=${{ secrets.AWS_REGION_3 }} | |
awsEfs=${{ secrets.TESTNET_EFS_3 }} | |
imageTag=${{ github.ref_name }} | |
- name: configure aws credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::${{ env.AWS_TESTNET }}:role/github-actions-${{ env.ENVIRONMENT }}-chainbridge | |
aws-region: ${{ secrets.AWS_REGION_3 }} | |
role-session-name: GithubActions | |
- name: deploy task definition | |
uses: aws-actions/amazon-ecs-deploy-task-definition@v1 | |
with: | |
task-definition: 'relayers/ecs/task_definition-${{ matrix.relayer_id }}_${{ env.ENVIRONMENT }}.json' | |
service: 'relayer-${{ matrix.relayer_id }}-service-${{ env.ENVIRONMENT }}' | |
cluster: 'relayer-${{ env.ENVIRONMENT }}' | |
wait-for-service-stability: true | |
- name: slack notify | |
uses: 8398a7/action-slack@v3 | |
with: | |
status: ${{ job.status }} | |
fields: repo,message,commit,author,action,job,eventName,ref,workflow # selectable (default: repo,message) | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required | |
if: always() |