Skip to content

Commit

Permalink
.github/workflows: add Fly Deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
FiloSottile committed Mar 3, 2024
1 parent 1eeedee commit 7589b5d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/fly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Fly Deploy
on:
push:
branches:
- main
permissions:
contents: read
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 -c rome/fly.toml
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

0 comments on commit 7589b5d

Please sign in to comment.