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 2aa2d8b commit 368b366Copy full SHA for 368b366
.github/workflows/deploy.yml .github/workflows/fly.yml.github/workflows/deploy.yml renamed to .github/workflows/fly.yml
@@ -1,19 +1,16 @@
1
-name: Deploy to Fly.io
2
-
+name: Fly Deploy
3
on:
4
push:
5
branches:
6
- main
7
8
jobs:
9
deploy:
+ name: Deploy app
10
runs-on: ubuntu-latest
+ concurrency: deploy-group
11
steps:
12
- uses: actions/checkout@v4
13
14
- - name: Deploy to Fly.io
15
- uses: superfly/flyctl-actions@master
16
- with:
17
- args: "deploy"
+ - uses: superfly/flyctl-actions/setup-flyctl@master
+ - run: flyctl deploy --remote-only
18
env:
19
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
0 commit comments