Skip to content

Commit

Permalink
Merge pull request #22 from LikeLion-KNU/feature/cd
Browse files Browse the repository at this point in the history
chore: CD를 위한 Github Action 워크플로우 작성
  • Loading branch information
toothlessdev authored Sep 7, 2024
2 parents 75de52f + ad709b3 commit 2ea002e
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Deploy Production

on:
workflow_run:
workflows: ["Run Tests"]
types:
- completed
workflow_dispatch:
pull_request:
branches: ["release"]
types: ["closed"]

env:
NODE_VERSION: 20

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Install NodeJS
uses: actions/setup-node@v4
with:
node-version: ${{env.NODE_VERSION}}

- name: Code Checkout
uses: actions/checkout@v4

- name: Install Dependencies
run: npm ci

- name: Build Production
run: npm run build

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{secrets.AWS_ACCESS_KEY_ID}}
aws-secret-access-key: ${{secrets.AWS_SECRET_ACCESS_KEY}}
aws-region: ap-southeast-2

- name: Upload to S3
env:
BUCKET_NAME: ${{secrets.AWS_S3_BUCKET_NAME}}
run: aws s3 sync ./dist s3://$BUCKET_NAME --delete

- name: CloudFront Invalidation
env:
CLOUD_FRONT_ID: ${{ secrets.AWS_CLOUDFRONT_ID}}
run: |
aws cloudfront create-invalidation \
--distribution-id $CLOUD_FRONT_ID --paths /*

0 comments on commit 2ea002e

Please sign in to comment.