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 366724f commit f7a0c3aCopy full SHA for f7a0c3a
.github/workflows/release-source.yml
@@ -91,10 +91,10 @@ jobs:
91
92
if [ "$input_major" -eq "$file_major" ]; then
93
if [ "$input_minor" -eq "$file_minor" ]; then
94
- if [ "$input_patch" -gt "$stable_patch" ]; then
+ if [ "$input_patch" -eq "$stable_patch" ]; then
95
echo "Valid patch version input"
96
else
97
- echo "Error: Patch version cannot be less than or equal to the stable release version."
+ echo "Error: Patch version must match the package.json version without the -SNAPSHOT suffix."
98
exit 1
99
fi
100
elif [ "$input_minor" -gt "$file_minor" ] && [ "$input_patch" -eq 0 ]; then
0 commit comments