Merge pull request #35372 from ClickHouse/fix-release

Fix logic for --no-prestable
This commit is contained in:
Mikhail f. Shiryaev 2022-03-17 17:15:46 +01:00 committed by GitHub
commit aabb3f883b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,10 +100,10 @@ class Release:
if self.release_type in self.BIG:
# Checkout to the commit, it will provide the correct current version
if with_prestable:
logging.info("Skipping prestable stage")
else:
with self.prestable():
logging.info("Prestable part of the releasing is done")
else:
logging.info("Skipping prestable stage")
with self.testing():
logging.info("Testing part of the releasing is done")