Update index.tsx #645
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: Deploy to S3 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 17 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: false | |
- name: build | |
run: | | |
node --version | |
pnpm install --frozen-lockfile | |
pnpm export | |
- uses: jakejarvis/s3-sync-action@master | |
with: | |
# put back --delete (before --exclude) after S3 is fixed to redirect all 404s to the app for case insensitivity. | |
# /Ridglan is linked to from the internet and doesn't work if we delete the temporary and manually created /Ridglan folder in S3. | |
args: --acl public-read --follow-symlinks --exclude '.git*' | |
env: | |
AWS_S3_BUCKET: ${{ secrets.S3_BUCKET }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_REGION: "us-west-2" | |
SOURCE_DIR: "out" | |
- uses: chetan/invalidate-cloudfront-action@master | |
env: | |
DISTRIBUTION: ${{ secrets.CLOUDFRONT_DISTRIBUTION }} | |
PATHS: "/*" | |
AWS_REGION: "us-west-2" | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |