Skip to content

Commit

Permalink
Add Deploy to Fly.io action
Browse files Browse the repository at this point in the history
  • Loading branch information
mtimoustafa committed Oct 31, 2024
1 parent 648cc71 commit f88960f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/fly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: 'Deploy to Fly.io'

on:
push:
workflow_dispatch:
branches:
- master

jobs:
deploy:
name: 'Deploy app'
runs-on: ubuntu-latest
concurrency: deploy-group
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only


0 comments on commit f88960f

Please sign in to comment.