AG-1568: Upgrade dev bastion to t3.micro to evaluate deployment fix #24
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
name: main | |
on: | |
pull_request: | |
branches: ['*'] | |
push: | |
branches: ['*'] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- uses: pre-commit/[email protected] | |
deploy-agoradev-common: | |
if: github.ref == 'refs/heads/main' | |
needs: [pre-commit] | |
uses: "./.github/workflows/aws-deploy.yaml" | |
with: | |
role-to-assume: "arn:aws:iam::607346494281:role/sagebase-github-oidc-agora-infra-deploy" | |
sceptre-command: "sceptre launch common --prune --yes" | |
deploy-agoradev: | |
if: github.ref == 'refs/heads/main' | |
needs: [deploy-agoradev-common] | |
uses: "./.github/workflows/aws-deploy.yaml" | |
with: | |
role-to-assume: "arn:aws:iam::607346494281:role/sagebase-github-oidc-agora-infra-deploy" | |
sceptre-command: "sceptre launch agoradev/develop --prune --yes" | |
deploy-agoraprod-common: | |
if: github.ref == 'refs/heads/main' | |
needs: [deploy-agoradev] | |
uses: "./.github/workflows/aws-deploy.yaml" | |
with: | |
role-to-assume: "arn:aws:iam::681175625864:role/sagebase-github-oidc-agora-infra-deploy" | |
sceptre-command: "sceptre launch common --prune --yes" | |
deploy-agoraprod-staging: | |
if: github.ref == 'refs/heads/main' | |
needs: [deploy-agoraprod-common] | |
uses: "./.github/workflows/aws-deploy.yaml" | |
with: | |
role-to-assume: "arn:aws:iam::681175625864:role/sagebase-github-oidc-agora-infra-deploy" | |
sceptre-command: "sceptre launch agoraprod/staging --prune --yes" | |
deploy-agoraprod-prod: | |
if: github.ref == 'refs/heads/main' | |
needs: [deploy-agoraprod-staging] | |
uses: "./.github/workflows/aws-deploy.yaml" | |
with: | |
role-to-assume: "arn:aws:iam::681175625864:role/sagebase-github-oidc-agora-infra-deploy" | |
sceptre-command: "sceptre launch agoraprod/prod --prune --yes" |