Skip to content

Fly Deploy

Fly Deploy #13

Workflow file for this run

name: Fly Deploy
on:
workflow_run:
workflows: [ CI ]
types: [ completed ]
jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' && github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}