generated from wafflestudio/seminar-2024-frontend-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
๐ Create production deploy integration (#6)
* โจ Create production deploy integration * โ๏ธ Fix cd name typos
- Loading branch information
1 parent
ab81911
commit 46f5a61
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: deploy-prod | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.11.1' | ||
|
||
- name: Build & Export | ||
run: | | ||
yarn install | ||
yarn build | ||
- name: Deploy to S3 and Invalidate Cloudfront | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_REGION: ap-northeast-2 | ||
run: | | ||
aws s3 sync ./dist s3://2024-frontend-prod --delete | ||
aws cloudfront create-invalidation --distribution-id EKVGQON1ME0P2 --paths "/*" |