This repository was archived by the owner on Oct 13, 2025. It is now read-only.
New cicd rls #15
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: Main | |
| on: | |
| pull_request: | |
| push: | |
| branches: [master] | |
| jobs: | |
| check-workflows: | |
| name: Check workflows | |
| runs-on: ubuntu-latest | |
| steps: | |
| # v4.1.1 | |
| - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
| - name: Download actionlint | |
| id: download-actionlint | |
| run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/7fdc9630cc360ea1a469eed64ac6d78caeda1234/scripts/download-actionlint.bash) 1.6.23 | |
| shell: bash | |
| - name: Check workflow files | |
| run: ${{ steps.download-actionlint.outputs.executable }} -color | |
| shell: bash | |
| build-test: | |
| name: Build and test | |
| uses: ./.github/workflows/build-test.yml | |
| release-uat: | |
| name: UAT Release | |
| uses: ./.github/workflows/release.yml | |
| needs: [ build-test ] | |
| # Todo Remove After testing | |
| if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/new-cicd-rls' | |
| permissions: | |
| contents: read | |
| id-token: write | |
| with: | |
| environment: uat | |
| aws-region: us-east-1 | |
| aws-role-arn: arn:aws:iam::722264665990:role/OIDCGithubProviderRoleMetamaskHome | |
| aws-bucket-name: stage.home.metamask.io | |
| cloudfront-distribution-id: E1RY04JD0H4SYF | |
| release-prd: | |
| name: PRD Release | |
| uses: ./.github/workflows/release.yml | |
| needs: [ build-test, release-uat ] | |
| if: github.ref == 'refs/heads/master' | |
| permissions: | |
| contents: read | |
| id-token: write | |
| with: | |
| #TODO Update | |
| environment: prd | |
| aws-region: us-east-1 | |
| aws-role-arn: arn:aws:iam::722264665990:role/OIDCGithubProviderRoleMetamaskHome | |
| aws-bucket-name: stage.home.metamask.io | |
| cloudfront-distribution-id: E1RY04JD0H4SYF |