diff --git a/dist/macos/update_appcast_tip.py b/dist/macos/update_appcast_tip.py index 7b73cd410..6497b8133 100644 --- a/dist/macos/update_appcast_tip.py +++ b/dist/macos/update_appcast_tip.py @@ -22,6 +22,7 @@ from datetime import datetime, timezone now = datetime.now(timezone.utc) build = os.environ["GHOSTTY_BUILD"] commit = os.environ["GHOSTTY_COMMIT"] +repo = "https://github.com/mitchellh/ghostty" # Read our sign_update output with open("sign_update.txt", "r") as f: @@ -81,12 +82,14 @@ elem = ET.SubElement(item, "sparkle:minimumSystemVersion") elem.text = "12.0.0" elem = ET.SubElement(item, "description") elem.text = f""" -
Automated build from commit {commit}
on {now.strftime('%Y-%m-%d')}.
+Automated build from commit {commit}
+on {now.strftime('%Y-%m-%d')}.
+
These are automatic per-commit builds generated from the main Git branch. We do not generate any release notes for these builds. You can view the full -commit history -on GitHub for all changes. +commit history on GitHub for all changes.
""" elem = ET.SubElement(item, "enclosure")