Skip to content

Commit

Permalink
Issue #217: Ooopsie on postcondition check
Browse files Browse the repository at this point in the history
  • Loading branch information
ALRubinger committed Mar 9, 2024
1 parent 3af03bb commit 4eba213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
fi
# Postcondition check; only allow this to proceed if we have a version ending in "-SNAPSHOT"
if [[ ! "$input_string" =~ -SNAPSHOT$ ]]; then
if [[ ! "$resolvedVersion" =~ -SNAPSHOT$ ]]; then
echo "Error: The version does not end with \"-SNAPSHOT\": $resolvedVersion"
exit 1
fi
Expand Down

0 comments on commit 4eba213

Please sign in to comment.