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 0e46837 commit 94e8432Copy full SHA for 94e8432
bin/deploy
@@ -72,18 +72,19 @@ echo "Tagging the version commit with the version number"
72
git tag "${git_tag}"
73
74
echo "Running some final checks"
75
+echo
76
77
exit_status=0
78
79
if grep -Fxq "${version}" openapi.yaml; then
- echo "OK - version ${version} is present in openapi.yaml"
80
+ echo "OK - version ${version} is present in openapi.yaml"
81
else
82
echo "ERROR - version ${version} is not present in openapi.yaml"
83
exit_status=1
84
fi
85
86
if $(git tag | grep -Fxq "${git_tag}"); then
- echo "OK - ${git_tag} is present in git tags"
87
+ echo "OK - ${git_tag} is present in git tags"
88
89
echo "ERROR - ${git_tag} is not present in git tags"
90
0 commit comments