Skip to content

Commit c7fbc67

Browse files
committed
Auto-deploy to Fly.io on commits to main
I believe I have this correct, but it's sort of impossible to test without doing it.
1 parent 3fe0e17 commit c7fbc67

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/deploy.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/
2+
# https://github.com/marketplace/actions/github-action-for-flyctl
3+
4+
name: Deploy site to Fly.io
5+
6+
on:
7+
push:
8+
branches:
9+
- main
10+
11+
jobs:
12+
deploy:
13+
name: Deploy Site
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v3
17+
- uses: superfly/flyctl-actions/setup-flyctl@master
18+
- run: flyctl deploy --remote-only
19+
env:
20+
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

0 commit comments

Comments
 (0)