Skip to content

Commit

Permalink
feat: pre-production workflow 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
victolee0 committed Nov 22, 2023
1 parent 8a7be13 commit a53b032
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/be-pre-production-workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: BE Pre Production Workflow

on:
push:
branches: preproduction
paths: "BE/**"

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: connect to NCP
use: appleboy/ssh-action@master
with:
host: ${{ secrets.NCP_HOST }}
username: ${{ secrets.NCP_USERNAME }}
password: ${{ secrets.NCP_PASSWORD }}

script: |
cd iOS06-FlipMate-preproduction/BE
git pull origin preproduction
npm install
if ! pm2 list | grep -q "flipmate-preproduction"; then
pm2 start npm --name "flipmate-preproduction" -- run start
else
pm2 restart flipmate-preproduction
fi

0 comments on commit a53b032

Please sign in to comment.