Skip to content

Commit

Permalink
add deployment script for next
Browse files Browse the repository at this point in the history
  • Loading branch information
motatoes committed Jul 19, 2024
1 parent c1c4825 commit 8d752cb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/next_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Fly Deploy
on:
push:
branches:
- develop # change to main if needed
- feat/next
pull_request:
branches:
- feat/next

jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
concurrency: deploy-group # optional: ensure only one action runs at a time
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLYIO_TOKEN }}

0 comments on commit 8d752cb

Please sign in to comment.