add gitea workflow for auto-deploy to fly on push to main
Some checks failed
deploy / deploy (push) Failing after 5s

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

View File

@ -0,0 +1,17 @@
name: deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-action/setup-flyctl@master
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}