deploy to fly.io
This commit is contained in:
parent
b2150f0741
commit
6712ea7c83
1 changed files with 17 additions and 0 deletions
17
.github/workflows/fly.yml
vendored
Normal file
17
.github/workflows/fly.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: Deploy to Fly.io
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
name: Deploy
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: superfly/flyctl-actions/setup-flyctl@master
|
||||||
|
- run: flyctl deploy --remote-only
|
||||||
|
env:
|
||||||
|
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|
Loading…
Reference in a new issue