Improve health events relay #27
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: Deploy DevOps tooling CD pipeline CloudFormation stack | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- devops/tooling-cd-pipeline.yml | |
concurrency: | |
group: ${{ github.workflow }} | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: us-east-2 | |
role-to-assume: arn:aws:iam::578003269847:role/DevOps-GitHubOidcFederatedRole | |
role-session-name: GitHubActions-DeployDevopsToolingCdPipelineStack | |
- name: Deploy CloudFormation stack | |
working-directory: devops | |
run: | | |
aws cloudformation deploy --region us-east-2 --stack-name prx-devops-cd-pipeline --template-file tooling-cd-pipeline.yml --capabilities CAPABILITY_NAMED_IAM CAPABILITY_AUTO_EXPAND --no-fail-on-empty-changeset |