Finished!

This commit is contained in:
2023-12-27 10:52:24 -07:00
parent d98dd600a4
commit 3630affe2e
7 changed files with 201 additions and 36 deletions

15
.github/workflows/fly.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Fly Deploy
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy app
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 }}