an atproto based link aggregator

Fix: pass Fly token directly via -t flag

Secrets from repo settings are exposed as env vars directly.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+2 -6
+2 -6
.tangled/workflows/ci.yaml
··· 36 36 command: SKIP_BROWSER_TESTS=1 pnpm test 37 37 38 38 - name: Deploy webapp 39 - command: flyctl deploy --remote-only 39 + command: flyctl deploy --remote-only -t "$FLY_API_KEY" 40 40 when: 41 41 - event: ['push'] 42 42 branch: ['main'] 43 - secrets: 44 - - FLY_API_TOKEN=$FLY_API_KEY 45 43 46 44 - name: Deploy ingester 47 - command: flyctl deploy -c fly.ingester.toml --remote-only 45 + command: flyctl deploy -c fly.ingester.toml --remote-only -t "$FLY_INGESTER_API_KEY" 48 46 when: 49 47 - event: ['push'] 50 48 branch: ['main'] 51 - secrets: 52 - - FLY_API_TOKEN=$FLY_INGESTER_API_KEY