diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 335f4e5..a051746 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -25,7 +25,7 @@ jobs: script: | cd ~ cd back-end - npx pm2 stop back-end > /dev/null 2>&1 + npx pm2 stop back-end echo stop server git pull origin main if ! command -v node &> /dev/null; then @@ -36,5 +36,5 @@ jobs: sudo apt install -y npm fi npm ci - npx pm2 start npm --name back-end -- start > /dev/null 2>&1 + npx pm2 start npm --name back-end -- start echo start server