Updated auth docs #57
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: Copy docs into modio-docs | |
on: | |
push: | |
branches: | |
- 'master' | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read # This is required for actions/checkout | |
jobs: | |
copy-into-modio-docs-staging: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install gems | |
run: | | |
sudo gem install bundler | |
bundle install | |
- name: Configure AWS Credentials for api-staging | |
env: | |
AWS_REGION : ap-southeast-2 | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: ${{ secrets.RESTAPI_STAGING_AWS_ROLE }} | |
role-session-name: api-staging-github-action | |
aws-region: ${{ env.AWS_REGION }} | |
- name: Deploy build into modio-docs staging (temp solution) | |
env: | |
ENVIRONMENT: staging | |
AWS_REGION : ap-southeast-2 | |
run: | | |
make deploy-into-modio-docs | |
copy-into-modio-docs-prod: | |
runs-on: ubuntu-latest | |
needs: [copy-into-modio-docs-staging] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install gems | |
run: | | |
sudo gem install bundler | |
bundle install | |
- name: Configure AWS Credentials for api-prod | |
env: | |
AWS_REGION : us-west-2 | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: ${{ secrets.RESTAPI_PROD_AWS_ROLE }} | |
role-session-name: api-staging-github-action | |
aws-region: ${{ env.AWS_REGION }} | |
- name: Deploy build into modio-docs prod (temp solution) | |
env: | |
ENVIRONMENT: prod | |
AWS_REGION : us-west-2 | |
run: | | |
make deploy-into-modio-docs |