Skip to content

Commit fa1481d

Browse files
committed
fix github actions
1 parent 4ee7a6f commit fa1481d

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/deploy-staging.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ jobs:
3333
cd /home/modl/modl-admin
3434
git stash
3535
git pull origin dev
36-
if git diff --name-only HEAD@{1} HEAD | grep -q "^package.*\.json$"; then
37-
npm ci
38-
fi
36+
npm i
3937
if git diff --name-only HEAD@{1} HEAD | grep -q "^client/package.*\.json$"; then
4038
cd client
4139
npm ci

.github/workflows/deploy.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ jobs:
3333
cd /home/modl/modl-admin
3434
git stash
3535
git pull origin main
36-
if git diff --name-only HEAD@{1} HEAD | grep -q "^package.*\.json$"; then
37-
npm ci
38-
fi
36+
npm i
3937
if git diff --name-only HEAD@{1} HEAD | grep -q "^client/package.*\.json$"; then
4038
cd client
4139
npm ci

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"author": "modl-gg",
2424
"license": "AGPL-3.0-only",
2525
"dependencies": {
26-
"@modl-gg/shared-web": "^1.0.0",
26+
"@modl-gg/shared-web": "1.0.1",
2727
"@tanstack/react-query-devtools": "^5.81.2",
2828
"@vitejs/plugin-react": "^4.6.0",
2929
"compression": "^1.7.4",

0 commit comments

Comments
 (0)