gabrielsimmer.com/.gitea/workflows/flyctl-deploy.yml
2023-09-22 13:52:38 +01:00

18 lines
394 B
YAML

name: Fly Deploy
on:
push:
branches:
- trunk
jobs:
deploy:
name: Deploy app
runs-on: debian-latest-arm
steps:
- uses: actions/checkout@v3.6.0
with:
ref: trunk
- uses: https://github.com/superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}