Published v8.0.0 and remove debug output in publish script

This commit is contained in:
Clemens Schwaighofer
2023-03-01 07:20:11 +09:00
parent 0a80abe8a4
commit b2751872a3
2 changed files with 1 additions and 2 deletions

View File

@@ -1 +1 @@
7.12.2 8.0.0

View File

@@ -11,7 +11,6 @@ fi;
# compare version, if different or newer, deploy # compare version, if different or newer, deploy
if [ -f "${file_last_published}" ]; then if [ -f "${file_last_published}" ]; then
LAST_PUBLISHED_VERSION=$(cat ${file_last_published}); LAST_PUBLISHED_VERSION=$(cat ${file_last_published});
echo "V: ${VERSION} | ${LAST_PUBLISHED_VERSION}";
if $(dpkg --compare-versions "${VERSION}" le "${LAST_PUBLISHED_VERSION}"); then if $(dpkg --compare-versions "${VERSION}" le "${LAST_PUBLISHED_VERSION}"); then
echo "git tag version ${VERSION} is not newer than previous published version ${LAST_PUBLISHED_VERSION}"; echo "git tag version ${VERSION} is not newer than previous published version ${LAST_PUBLISHED_VERSION}";
exit; exit;