We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a251580 commit 8179531Copy full SHA for 8179531
1 file changed
.github/workflows/release.yml
@@ -142,7 +142,7 @@ jobs:
142
manifest_diff="$(git diff -U0 "$before" "$after" -- "$manifest" || true)"
143
# Require both removed and added "version" lines to avoid treating
144
# metadata-only package.json edits as publish intents.
145
- if echo "$manifest_diff" | grep -Eq '^-\\s*"version"\\s*:' && echo "$manifest_diff" | grep -Eq '^\\+\\s*"version"\\s*:'; then
+ if echo "$manifest_diff" | grep -Eq '^-[[:space:]]*"version"[[:space:]]*:' && echo "$manifest_diff" | grep -Eq '^\+[[:space:]]*"version"[[:space:]]*:'; then
146
has_version_bumps=true
147
break
148
fi
0 commit comments