Don't check Python standards #2
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 application | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- template.yml | |
- package.json | |
- yarn.lock | |
- src/** | |
concurrency: | |
group: ${{ github.workflow }} | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
check-project-std: | |
uses: ./.github/workflows/check-project-std.yml | |
deploy-application: | |
runs-on: ubuntu-latest | |
needs: [check-project-std] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: aws-actions/setup-sam@v2 | |
with: | |
use-installer: true | |
- uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: us-east-2 | |
role-to-assume: arn:aws:iam::127213743756:role/PRX-GHA-AccessRole | |
role-session-name: gha-deploy-cost-explorer-toolkit | |
- name: Deploy CloudFormation stack | |
run: | | |
rm samconfig.toml | |
sam build && sam deploy \ | |
--debug \ | |
--region us-east-2 \ | |
--no-confirm-changeset \ | |
--no-fail-on-empty-changeset \ | |
--stack-name cost-explorer-toolkit \ | |
--resolve-s3 \ | |
--no-progressbar \ | |
--s3-prefix cost-explorer-toolkit \ | |
--capabilities CAPABILITY_IAM \ | |
--role-arn arn:aws:iam::127213743756:role/PRX-GHA-ServiceRoleForCloudFormation |