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.
This commit is contained in:
Scott Reimers 2026-04-23 01:06:28 -04:00
parent 738c902287
commit 67d9367eec

View file

@ -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)."