File tree 1 file changed +9
-20
lines changed
1 file changed +9
-20
lines changed Original file line number Diff line number Diff line change @@ -2,31 +2,20 @@ name: S3 Deploy
2
2
on :
3
3
push :
4
4
branches :
5
- - main
5
+ - master
6
6
jobs :
7
7
run :
8
8
runs-on : ubuntu-latest
9
9
env :
10
10
AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
11
11
AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
12
12
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
23
14
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
+
You can’t perform that action at this time.
0 commit comments