[BE#491] heartbeat가 없는 경우 학습 기록 자동 저장 (#493) #60
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: BE main Workflow | |
on: | |
push: | |
branches: main | |
paths: "BE/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: connect to NCP | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.NCP_HOST }} | |
username: ${{ secrets.NCP_USERNAME }} | |
password: ${{ secrets.NCP_PASSWORD }} | |
script: | | |
export NVM_DIR=~/.nvm | |
source ~/.nvm/nvm.sh | |
cd iOS06-FlipMate/BE | |
git pull origin main | |
npm install | |
if ! pm2 list | grep "flipmate-dev"; then | |
pm2 start npm --name "flipmate-dev" -- run start | |
else | |
pm2 restart flipmate-dev | |
fi |