feat : 전체 보증금 금액 보증금 차감 내역 기준으로 다시 계산하는 api 추가 #11
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: CI/CD Pipeline | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
# 리포지토리의 코드를 체크아웃합니다. | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
# Node.js 환경을 설정합니다. | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
# 프로젝트의 의존성을 설치합니다. | |
- name: Install dependencies | |
run: npm install | |
- name: Deploy to AWS EC2 | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.SERVER_IP }} | |
username: ubuntu | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
script: | | |
cd Pironeer_Attend_Web/ | |
git pull origin main | |
npm install | |
pm2 stop app.js || true | |
pm2 start app.js | |
sudo systemctl restart nginx | |