Skip to content

Commit

Permalink
add --no-frozen-lockfile cause it's frozen by default in gh actions
Browse files Browse the repository at this point in the history
deploy
  • Loading branch information
trueberryless committed Jan 5, 2025
1 parent 3833320 commit 8badc93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sync_templates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ done
# Post-processing: Run pnpm install only if package.json was modified
if git diff --name-only | grep -q "package.json" || git diff --name-only --cached | grep -q "package.json"; then
echo "package.json was modified. Running pnpm install..."
pnpm install
pnpm install --no-frozen-lockfile
else
echo "No changes to package.json detected. Skipping pnpm install."
fi
Expand Down

0 comments on commit 8badc93

Please sign in to comment.