-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 1.39 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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 }}