File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ name : deploy-temp
2+
3+ on :
4+ push :
5+ branches :
6+ - revert-api
7+ workflow_dispatch :
8+
9+ jobs :
10+ deploy :
11+ name : Deploy
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - name : Checkout
16+ uses : actions/checkout@v4
17+ - name : Setup Node
18+ uses : actions/setup-node@v4
19+ with :
20+ node-version : ' 20.11.1'
21+
22+ - name : Build & Export
23+ run : |
24+ yarn install
25+ yarn build
26+
27+ - name : Deploy to S3 and Invalidate Cloudfront
28+ env :
29+ AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
30+ AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
31+ AWS_REGION : ap-northeast-2
32+ run : |
33+ aws s3 sync ./dist s3://waffle-team4-web-temp --delete
34+ aws cloudfront create-invalidation --distribution-id E2HDLBJVBNM8HH --paths "/*"
You canโt perform that action at this time.
0 commit comments