Updated workflow

This commit is contained in:
Niklas080208
2026-02-03 19:45:49 +01:00
parent 54ded6402e
commit 9d9cf29491
2 changed files with 11 additions and 7 deletions

View File

@@ -311,13 +311,15 @@ if __name__ == "__main__":
if failed:
exit(1)
out_zip = f"{ver_dir}.zip"
if exists(out_zip):
remove(out_zip)
zipdir(ver_dir, out_zip)
print("\nDOWNLOAD COMPLETE!")
print(f"Archive created: {out_zip}")
out_zip = f"{ver_dir}.zip"
if not os.environ.get("SKIP_ZIP"):
if exists(out_zip):
remove(out_zip)
zipdir(ver_dir, out_zip)
print("\nDOWNLOAD COMPLETE!")
print(f"Archive created: {out_zip}")
else:
print("\nDOWNLOAD COMPLETE! (zip skipped, set by workflow)")
print(f"SystemVersion NCA FAT: {sv_nca_fat or 'Not Found'}")
print(f"SystemVersion NCA exFAT: {sv_nca_exfat or 'Not Found'}")
print("Verify hashes before installation!")