Skip to content

Commit

Permalink
Merge pull request #262 from Spacelog/add-continuous-deployment
Browse files Browse the repository at this point in the history
Set up continuous deployment to Fly.io
  • Loading branch information
SteveMarshall committed Mar 29, 2024
2 parents 309a8e1 + 42f8846 commit d69f5b9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/fly.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Fly Deploy
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
concurrency: deploy-group
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

0 comments on commit d69f5b9

Please sign in to comment.