[BE#487] 친구 고정 기능 (#488) #58
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 |