Fix cards #947
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 14 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '14' | |
- run: npm install | |
- run: npm run lint | |
- run: npm run build | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: ${{ vars.DEVREL_GH_OIDC_ROLE_ARN }} | |
aws-region: eu-west-1 | |
role-session-name: GitHub-OIDC-docs-ui | |
- name: Sync UI Bundle to S3 | |
env: | |
AWS_S3_BUCKET: ${{ secrets.STATIC_CONTENT_BUCKET }} | |
# if the AWS_S3_BUCKET is undefined, the task will fail | |
# also make sure that we are on master before publishing the "latest" version | |
if: ${{ env.AWS_S3_BUCKET != '' && github.ref == 'refs/heads/master' }} | |
run: | | |
aws s3 sync --follow-symlinks --include '*.zip' --no-progress build s3://${{ secrets.STATIC_CONTENT_BUCKET }}/build |