From 67d9367eec313c27d1f08ea91bd803c908385da9 Mon Sep 17 00:00:00 2001 From: Scott Reimers Date: Thu, 23 Apr 2026 01:06:28 -0400 Subject: [PATCH] deploy.sh: note the Windows-installer handoff at script end The deploy pipeline builds AppImage, APK, and CLI on Linux, but the Windows installer is produced on a separate Windows host (no cross-compile toolchain here). Print a reminder at the end of every deploy with the exact filename the Windows team needs to upload, so the handoff stays unambiguous. --- deploy.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/deploy.sh b/deploy.sh index 984dee8..d8669c9 100755 --- a/deploy.sh +++ b/deploy.sh @@ -78,4 +78,11 @@ sleep 2 echo "=== Verifying anchor ===" sshpass -p "$SSH_PASS" ssh $SSH_OPTS "$SSH_HOST" 'ps aux | grep "[i]tsgoin.*daemon"' +echo "" echo "=== Deploy complete: v${VERSION} ===" +echo "" +echo "Windows installer: this script does NOT build the Windows .exe." +echo "download.html carries a link to itsgoin-${VERSION}-windows-x64-setup.exe" +echo "The Windows build host needs to produce that file and SCP it to:" +echo " $SSH_HOST:~/public_html/itsgoin-${VERSION}-windows-x64-setup.exe" +echo "Until they do, the Windows download link 404s (stable-target pattern)."