Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/preview-www-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,9 @@ jobs:
echo "is_affected=true" >> "$GITHUB_OUTPUT"
fi
- name: Install Vercel CLI
# Pin the CLI to avoid upstream breakage from newly published majors.
run: npm install --global vercel@54.7.1
# Vercel 54 invokes pnpm with --unsafe-perm, which pnpm 12 removed.
# Keep the CLI pinned while using a version that supports the workspace's pnpm.
run: npm install --global vercel@59.16.0
Comment thread
yamcodes marked this conversation as resolved.
- name: Pull Vercel Environment Information
if: steps.affected.outputs.is_affected == 'true'
env:
Expand Down
Loading