Skip to content

Commit d476047

Browse files
committed
Update main.yml
1 parent 2e3fb0e commit d476047

File tree

1 file changed

+9
-20
lines changed

1 file changed

+9
-20
lines changed

.github/workflows/main.yml

+9-20
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,20 @@ name: S3 Deploy
22
on:
33
push:
44
branches:
5-
- main
5+
- master
66
jobs:
77
run:
88
runs-on: ubuntu-latest
99
env:
1010
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
1111
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
1212
steps:
13-
- uses: actions/checkout@v3
14-
15-
- name: Install dependencies
16-
run: yarn
17-
18-
- name: Build
19-
run: yarn build
20-
21-
- name: Deploy
22-
uses: reggionick/s3-deploy@v4
13+
- uses: actions/checkout@v4
2314
with:
24-
folder: /
25-
bucket: ${{ secrets.S3_BUCKET }}
26-
bucket-region: ${{ secrets.S3_BUCKET_REGION }}
27-
dist-id: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }}
28-
invalidation: /
29-
delete-removed: true
30-
no-cache: true
31-
private: true
32-
files-to-include: '{.*/**,**}'
15+
path: './repo'
16+
- name: Deploy
17+
run: |
18+
npm i s3-deploy
19+
cd ./repo
20+
npx s3-deploy './**' --cwd './' --region ${{ secrets.S3_BUCKET_REGION }} --bucket ${{ secrets.S3_BUCKET }} --distId ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }} --deleteRemoved --invalidate '/'
21+

0 commit comments

Comments
 (0)