Skip to content

Commit aca12bd

Browse files
authored
Merge branch 'main' into dev
2 parents 3bc4ebf + a7d4498 commit aca12bd

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/deploy-staging.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,9 @@ jobs:
3434
git stash
3535
git pull origin dev
3636
npm i
37-
if git diff --name-only HEAD@{1} HEAD | grep -q "^client/package.*\.json$"; then
38-
cd client
39-
npm ci
40-
cd ..
41-
fi
37+
cd client
38+
npm i
39+
cd ..
4240
npm run build
4341
pm2 reload modl-admin --wait-ready
4442
if pm2 describe modl-admin | grep -q "online"; then

.github/workflows/deploy.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,9 @@ jobs:
3434
git stash
3535
git pull origin main
3636
npm i
37-
if git diff --name-only HEAD@{1} HEAD | grep -q "^client/package.*\.json$"; then
38-
cd client
39-
npm ci
40-
cd ..
41-
fi
37+
cd client
38+
npm i
39+
cd ..
4240
npm run build
4341
pm2 reload modl-admin --wait-ready
4442
if pm2 describe modl-admin | grep -q "online"; then

0 commit comments

Comments
 (0)