Merge pull request #314 from aodn/features/6364-detail-page-reramp-ci… #305
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: Build/Deploy Edge | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**/*.md' | |
- '.github/environment/**' | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
build_push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Yarn install | |
run: | | |
yarn install --immutable | |
- name: Build Website | |
run: yarn edge | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: ./dist | |
retention-days: 1 | |
edge_deploy: | |
environment: edge | |
runs-on: ubuntu-latest | |
needs: build_push | |
env: | |
DIST: ./dist | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: build | |
path: ./dist | |
- name: Configure AWS credentials | |
id: aws_auth | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
audience: sts.amazonaws.com | |
aws-region: ${{ vars.AWS_REGION }} | |
role-to-assume: ${{ vars.AWS_ROLE_ARN }} | |
- name: Copy files to the production website with the AWS CLI | |
run: | | |
aws s3 sync --delete ${{ env.DIST }} s3://${{ vars.BUCKET }} --region ${{ vars.AWS_REGION }} | |
- name: Clear cloudfront cache | |
run: | | |
aws cloudfront create-invalidation \ | |
--distribution-id ${{ vars.DISTRIBUTION_ID }} \ | |
--paths "/*" \ | |
--region ${{ vars.AWS_REGION }} |