Skip to content

syntaxHighlighting bug fix #173

syntaxHighlighting bug fix

syntaxHighlighting bug fix #173

Workflow file for this run

name: Deploy Website
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '17.8.0'
- run: |
npm install
npm run build-prod
- uses: jakejarvis/s3-sync-action@master
with:
args: --acl public-read --follow-symlinks # --delete
env:
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'us-east-2' # optional: defaults to us-east-1
SOURCE_DIR: 'dist' # optional: defaults to entire repository