Merge pull request #366 from bmrdevteam/365-feature-학기-정보를-다운로드하고-업로드… #115
Workflow file for this run
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: frontend-pipeline | |
on: | |
push: | |
branches: [frontend] | |
jobs: | |
frontend-CI: | |
name: frontend-CI/CD | |
runs-on: ubuntu-22.04 | |
env: | |
CLIENT_PORT: ${{secrets.CLIENT_PORT_DEV}} | |
CI: false | |
steps: | |
# 체크아웃 | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# 캐시 받아오기 | |
- name: Cache node modules | |
uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: ${{ runner.OS }}-master-build-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.OS }}-build- | |
${{ runner.OS }}- | |
- name: Set .env File | |
run: | | |
cd frontend | |
echo "PORT=${{env.CLIENT_PORT}}" >> .env | |
echo "REACT_APP_SERVER_URL=${{secrets.SERVER_URL}}" >> .env | |
echo "REACT_APP_GOOGLE_CLIENT_ID=${{secrets.GOOGLE_CLIENT_ID}}" >> .env | |
echo "REACT_APP_GOOGLE_CALENDAR_API_KEY=${{secrets.REACT_APP_GOOGLE_CALENDAR_API_KEY}}" >> .env | |
- name: Install Dependencies and Build | |
run: | | |
cd frontend | |
yarn | |
yarn build | |
- name: Deploy | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.S3_ACCESSKEYID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRETACCESSKEY }} | |
AWS_REGION: ${{ secrets.S3_REGION }} | |
run: | | |
cd frontend | |
aws s3 sync \ | |
--acl public-read \ | |
--cache-control private,max-age=0,must-revalidate \ | |
--include "*.html" --include "*.json" \ | |
--delete \ | |
./build ${{secrets.S3_BUCKET_CLIENT}} | |
aws s3 sync \ | |
--acl public-read \ | |
--cache-control private,max-age=31536000 \ | |
--exclude "*.html" --exclude "*.json" \ | |
--delete \ | |
./build ${{secrets.S3_BUCKET_CLIENT}} \ | |
# 슬랙 알림 | |
- name: Send Slack Notification | |
uses: 8398a7/action-slack@v3 | |
with: | |
status: ${{ job.status }} | |
author_name: Github Action Chatbot - frontend-CI/CD | |
fields: repo,commit,message,author,action,took | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required | |
if: always() # Pick up events even if the job fails or is canceled. |