fix deploy workflow: install flyctl via curl instead of github action
Some checks failed
deploy / deploy (push) Has been cancelled

the act runner can't clone from github.com, so install flyctl directly

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jamey 2026-02-20 18:55:48 +00:00
parent 0b79f2a2e6
commit 6e02c213d9

View File

@ -10,8 +10,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: superfly/flyctl-action/setup-flyctl@master - name: install flyctl
run: curl -L https://fly.io/install.sh | sh
- run: flyctl deploy --remote-only - name: deploy
run: /root/.fly/bin/flyctl deploy --remote-only
env: env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}