Skip to content

Commit cf3af57

Browse files
authored
Create fly-deploy.yml
1 parent 6c84864 commit cf3af57

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/fly-deploy.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Fly Deploy
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
env:
9+
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
10+
11+
jobs:
12+
deploy:
13+
name: Deploy app
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- uses: superfly/flyctl-actions/setup-flyctl@master
18+
- run: flyctl deploy --remote-only

0 commit comments

Comments
 (0)