In RRR remove table, create tabs for each provider to configure prop… #1239
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
--- | |
# This workflow triggers a build of the production docs site | |
name: Build Production Site | |
on: | |
push: | |
branches: [main, 'v/*', shared, api, site-search, 'v-WIP/*'] | |
jobs: | |
dispatch: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: ${{ vars.RP_AWS_CRED_REGION }} | |
role-to-assume: arn:aws:iam::${{ secrets.RP_AWS_CRED_ACCOUNT_ID }}:role/${{ vars.RP_AWS_CRED_BASE_ROLE_NAME }}${{ github.event.repository.name }} | |
- uses: aws-actions/aws-secretsmanager-get-secrets@v2 | |
with: | |
secret-ids: | | |
,sdlc/prod/github/docs_netlify_build_hook | |
parse-json-secrets: true | |
- name: Trigger build | |
run: curl -X POST -d {} "${{ env.DOCS_NETLIFY_BUILD_HOOK }}" |