Merge pull request #74 from Choco-Express/dev #43
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
name: Deploy-Production | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ["latest"] | |
steps: | |
- name: Checkout Source Code | |
uses: actions/checkout@v3 | |
- name: Create .env file | |
run: | | |
echo "VITE_BASE_URL=${{ secrets.VITE_BASE_URL }}" >> .env | |
echo "VITE_KAKAO_KEY=${{ secrets.VITE_KAKAO_KEY }}" >> .env | |
echo "VITE_KAKAO_ID=${{ secrets.VITE_KAKAO_ID }}" >> .env | |
- name: Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "npm" | |
- run: npm --force ci | |
- name: Build Production | |
run: CI=false npm run build --if-present | |
- name: List dist Directory | |
run: ls dist # 빌드 결과가 있는지 확인하는 단계 | |
- 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-northeast-2 | |
- name: Deploy to S3 | |
env: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
run: aws s3 sync --region ap-northeast-2 dist ${{ secrets.S3_BUCKET_NAME }} --delete | |
- name: Invalidate CloudFront Cache | |
run: aws cloudfront create-invalidation --distribution-id ${{ secrets.AWS_DISTRIBUTION_ID }} --paths "/*" |