From 1f9b2bca841d04a2eff8a3d1155104703edd1ee9 Mon Sep 17 00:00:00 2001 From: Dean Brettle Date: Sun, 28 Jul 2024 10:38:45 -0700 Subject: [PATCH] Allow publishing releases on weekends. --- scripts/packaging/publish_release.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/packaging/publish_release.py b/scripts/packaging/publish_release.py index 63bf0f04805..7eb0e613049 100755 --- a/scripts/packaging/publish_release.py +++ b/scripts/packaging/publish_release.py @@ -47,9 +47,6 @@ if now.hour <= 5: # Publish nightly build with previous day date even if it completes in the morning now = now - datetime.timedelta(hours=6) -if now.weekday() >= 5: - print('Skipping nightly build for Saturday and Sunday.') - sys.exit(0) warningMessage = '\nIt might be unstable, for a stable version of Webots, please use the [latest official release]' \ '(https://github.com/cyberbotics/webots/releases/latest).'