We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89f0118 commit 5fca6afCopy full SHA for 5fca6af
2 files changed
.github/workflows/fly.yml
@@ -0,0 +1,16 @@
1
+name: Fly Deploy
2
+on:
3
+ push:
4
+ branches:
5
+ - main # change to main if needed
6
+jobs:
7
+ deploy:
8
+ name: Deploy app
9
+ runs-on: ubuntu-latest
10
+ concurrency: deploy-group # optional: ensure only one action runs at a time
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: superfly/flyctl-actions/setup-flyctl@master
14
+ - run: flyctl deploy --remote-only
15
+ env:
16
+ FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
mind-icon.png
470 KB
0 commit comments