Skip to content

fix(development): removed reference to ERGO in docs markup-templatema… #25

fix(development): removed reference to ERGO in docs markup-templatema…

fix(development): removed reference to ERGO in docs markup-templatema… #25

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: [14.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: |
cd ./website
pwd
npm install
- name: NPM Build
if: github.ref == 'refs/heads/main'
run: |
cd ./website
pwd
npm run build
- name: Set S3
if: github.ref == 'refs/heads/main'
run: |
echo "AWS_S3_BUCKET=${{secrets.AWS_S3_BUCKET}}" >> $GITHUB_ENV
- name: Deploy to S3
if: github.ref == 'refs/heads/main'
uses: jakejarvis/s3-sync-action@master
with:
args: --acl public-read --follow-symlinks --delete
env:
SOURCE_DIR: 'website/build/techdocs'
- name: Invalidate Cloudfront
uses: chetan/invalidate-cloudfront-action@master
env:
DISTRIBUTION: ${{ secrets.AWS_CLOUDFRONT_DISTRIBUTION_ID }}
PATHS: '/*'
AWS_REGION: ${{ secrets.AWS_REGION }}