Skip to content

Commit 7200b64

Browse files
committed
feat(cd): add frontend cd twentythree
1 parent f8d98ee commit 7200b64

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/deploy-stage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
6565
6666
cd nodejs-autospace/api-gateway
67-
pnpm install --prod --ignore-scripts
67+
CI=true pnpm install --prod --ignore-scripts
6868
NODE_ENV=stage pm2 restart api-gateway || NODE_ENV=stage pm2 start dist/index.js --name api-gateway
6969
7070
echo "Deploying Auth Service..."
@@ -74,7 +74,7 @@ jobs:
7474
7575
7676
cd nodejs-autospace/auth-service
77-
pnpm install --prod --ignore-scripts
77+
CI=true pnpm install --prod --ignore-scripts
7878
NODE_ENV=stage pm2 restart auth-service || NODE_ENV=stage pm2 start dist/server.js --name auth-service
7979
8080
echo "Deploying Resource Service..."
@@ -84,7 +84,7 @@ jobs:
8484
8585
8686
cd nodejs-autospace/resource-service
87-
pnpm install --prod --ignore-scripts
87+
CI=true pnpm install --prod --ignore-scripts
8888
NODE_ENV=stage pm2 restart resource-service || NODE_ENV=stage pm2 start dist/server.js --name resource-service
8989
9090
echo "Deploying Booking Service..."
@@ -93,7 +93,7 @@ jobs:
9393
git fetch origin
9494
git reset --hard origin/stage
9595
96-
pnpm install --prod --ignore-scripts
96+
CI=true pnpm install --prod --ignore-scripts
9797
NODE_ENV=stage pm2 restart booking-service || NODE_ENV=stage pm2 start dist/server.js --name booking-service
9898
9999

0 commit comments

Comments
 (0)