native macOS codings agent orchestrator
6
fork

Configure Feed

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

Fix delta base releases

khoi b42213e3 f0d17be0

+4 -3
+4 -3
.github/workflows/release.yml
··· 339 339 340 340 curl -fsSL "https://supacode.sh/download/latest/appcast.xml" -o "$STAGING/appcast.xml" || true 341 341 342 + RELEASE_REPO_SH="supabitapp/supacode-sh" 342 343 for i in $(seq 1 5); do 343 - PREV_TAG=$(gh release list --limit $i --exclude-drafts --exclude-pre-releases -R supabitapp/supacode --json tagName --jq ".[$((i-1))].tagName" 2>/dev/null || true) 344 + PREV_TAG=$(gh release list --limit $i --exclude-drafts --exclude-pre-releases -R "$RELEASE_REPO_SH" --json tagName --jq ".[$((i-1))].tagName" 2>/dev/null || true) 344 345 if [ -n "$PREV_TAG" ] && [ "$PREV_TAG" != "$TAG" ]; then 345 346 echo "Downloading $PREV_TAG for delta generation..." 346 - gh release download "$PREV_TAG" -p "supacode.app.zip" -O "$STAGING/supacode-$PREV_TAG.app.zip" -R supabitapp/supacode 2>/dev/null || true 347 - gh release view "$PREV_TAG" -R supabitapp/supacode --json body --jq '.body' > "$STAGING/supacode-$PREV_TAG.app.md" 2>/dev/null || true 347 + gh release download "$PREV_TAG" -p "supacode.app.zip" -O "$STAGING/supacode-$PREV_TAG.app.zip" -R "$RELEASE_REPO_SH" 2>/dev/null || true 348 + gh release view "$PREV_TAG" -R "$RELEASE_REPO_SH" --json body --jq '.body' > "$STAGING/supacode-$PREV_TAG.app.md" 2>/dev/null || true 348 349 fi 349 350 done 350 351