Skip to content

chore(deps-dev): bump nunjucks from 3.2.3 to 3.2.4 (#168) #24

chore(deps-dev): bump nunjucks from 3.2.3 to 3.2.4 (#168)

chore(deps-dev): bump nunjucks from 3.2.3 to 3.2.4 (#168) #24

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: NPM Install
if: github.ref == 'refs/heads/main'
run: npm install
- name: NPM Build
run: SERVER_ROOT=https://models.accordproject.org && npm run build
if: github.ref == 'refs/heads/main'
- name: Set S3
if: github.ref == 'refs/heads/main'
run: |
echo "AWS_S3_BUCKET=${{secrets.AWS_S3_BUCKET}}" >> $GITHUB_ENV
- name: Deploy to S3
uses: jakejarvis/s3-sync-action@master
with:
args: --acl public-read --follow-symlinks --delete
env:
SOURCE_DIR: 'build'
- name: Invalidate Cloudfront
uses: chetan/invalidate-cloudfront-action@master
env:
DISTRIBUTION: ${{ secrets.AWS_CLOUDFRONT_DISTRIBUTION_ID }}
PATHS: '/*'
AWS_REGION: ${{ secrets.AWS_REGION }}