Skip to content

Commit

Permalink
๐Ÿš€ Initialize aws deploy action (#5)
Browse files Browse the repository at this point in the history
deploy on dev server
  • Loading branch information
thisisWooyeol authored Nov 6, 2024
1 parent f22351d commit ab81911
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: deploy-dev

on:
push:
branches:
- main
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-dev --delete
aws cloudfront create-invalidation --distribution-id E2H0ROC6UUSCKG --paths "/*"
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ dist-ssr
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# TypeScript cache
*.tsbuildinfo

0 comments on commit ab81911

Please sign in to comment.