From 37e52165fdd6de35b5b1affb26ca207f8fa9a385 Mon Sep 17 00:00:00 2001 From: autumn <34-paradoxical_autumn@users.noreply.gitlab.1024cats.social> Date: Tue, 17 Feb 2026 23:46:40 +0000 Subject: [PATCH] add note about only uploading once the tag is there to build script --- mc-manager/BUILD.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mc-manager/BUILD.py b/mc-manager/BUILD.py index af6c57a..3607ca4 100644 --- a/mc-manager/BUILD.py +++ b/mc-manager/BUILD.py @@ -46,7 +46,7 @@ for rid in RIDS: os.chdir("pub") while True: - upload = input("Do you want to upload the release assets? (Y/N)") + upload = input(f"Do you want to upload the release assets? Please ensure you have created the tag \"{CURRENT_TIMESTAMP}\" first! (Y/N)") if upload.lower() not in ["y", "n"]: print("Please enter either Y or N.") continue