We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7fd89a commit 0d651cbCopy full SHA for 0d651cb
.github/workflows/fly-deploy.yml
@@ -0,0 +1,18 @@
1
+# See https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/
2
+
3
+name: Fly Deploy
4
+on:
5
+ push:
6
+ branches:
7
+ - main
8
+jobs:
9
+ deploy:
10
+ name: Deploy app
11
+ runs-on: ubuntu-latest
12
+ concurrency: deploy-group # optional: ensure only one action runs at a time
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: superfly/flyctl-actions/setup-flyctl@master
16
+ - run: flyctl deploy --remote-only
17
+ env:
18
+ FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
0 commit comments