native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Download release notes for previous versions in appcast generation

Sparkle's generate_appcast requires a .md file alongside each .zip to
embed release notes. Previously only the current version had release
notes, causing the update window to show only the latest changelog.

khoi 87beac0f 1375c86d

+1
+1
.github/workflows/release.yml
··· 324 324 if [ -n "$PREV_TAG" ] && [ "$PREV_TAG" != "$TAG" ]; then 325 325 echo "Downloading $PREV_TAG for delta generation..." 326 326 gh release download "$PREV_TAG" -p "supacode.app.zip" -O "$STAGING/supacode-$PREV_TAG.app.zip" -R supabitapp/supacode 2>/dev/null || true 327 + gh release view "$PREV_TAG" -R supabitapp/supacode --json body --jq '.body' > "$STAGING/supacode-$PREV_TAG.app.md" 2>/dev/null || true 327 328 fi 328 329 done 329 330