From 4d217a821f1592d472c3edab90a12800f0a86df5 Mon Sep 17 00:00:00 2001 From: riddhesh-mahajan Date: Thu, 23 Nov 2023 10:19:45 +0530 Subject: [PATCH] . --- .github/workflows/DeployPipeline.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/DeployPipeline.yml b/.github/workflows/DeployPipeline.yml index 8854ca0..5eaf8c5 100644 --- a/.github/workflows/DeployPipeline.yml +++ b/.github/workflows/DeployPipeline.yml @@ -69,22 +69,21 @@ jobs: cd ../ cd ./slash/apps/landing - pm2 start yarn --name slash_landing -- start pm2 stop slash_landing - pm2 start yarn --name slash_landing -- start + pm2 start npm --name "slash_landing" -- start cd ../admin pm2 stop slash_admin - pm2 start yarn --name slash_admin -- start + pm2 start npm --name "slash_admin" -- start cd ../web pm2 stop slash_web - pm2 start yarn --name slash_web -- start + pm2 start npm --name "slash_web" -- start cd ../backend pm2 stop slash_backend - pm2 start yarn --name slash_backend -- start + pm2 start npm --name "slash_backend" -- start cd ../code_executor pm2 stop slash_code_executor - pm2 start yarn --name slash_code_executor -- start + pm2 start npm --name "slash_code_executor" -- start