native macOS codings agent orchestrator
6
fork

Configure Feed

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

Fix missing GH_TOKEN in publish job

The gh release upload step in the publish job was missing
the GH_TOKEN env var, causing it to fail with exit code 4.

khoi c43f4ca3 7cdc3d52

+2
+2
.github/workflows/release.yml
··· 264 264 - run: | 265 265 DELTA_FILES=$(find build -name "*.delta" -type f 2>/dev/null | tr '\n' ' ' || true) 266 266 gh release upload "$TAG" build/supacode.app.zip build/supacode.dmg build/appcast.xml $DELTA_FILES --clobber -R "$RELEASE_REPO" 267 + env: 268 + GH_TOKEN: ${{ github.token }} 267 269 - run: | 268 270 set -euo pipefail 269 271 curl -fsSL "https://supacode.sh/download/$TAG/supacode.app.zip" -o /dev/null