Retain Credentials #327
Workflow file for this run
This file contains hidden or 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: AWS ECR API | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.draft == false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{github.event.pull_request.head.sha || github.sha}} | |
| - name: Configure AWS Credentials | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| role-to-assume: arn:aws-us-gov:iam::${{secrets.AWS_ACCOUNT_ID}}:role/Github-ECR-Builder | |
| role-session-name: GithubECRBuilder | |
| aws-region: ${{secrets.AWS_REGION}} | |
| - name: Docker Build | |
| run: node bin/build.js | |
| env: | |
| AWS_ACCOUNT_ID: ${{secrets.AWS_ACCOUNT_ID}} | |
| AWS_REGION: ${{secrets.AWS_REGION}} | |
| - name: Configure AWS Credentials (STAGING) | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| role-to-assume: arn:aws:iam::${{secrets.AWS_STAGING_ACCOUNT_ID}}:role/Github-ECR-Builder | |
| role-session-name: GithubECRBuilder | |
| aws-region: ${{secrets.AWS_STAGING_REGION}} | |
| - name: Docker Build (STAGING) | |
| run: node bin/build.js | |
| env: | |
| AWS_ACCOUNT_ID: ${{secrets.AWS_STAGING_ACCOUNT_ID}} | |
| AWS_REGION: ${{secrets.AWS_STAGING_REGION}} |