mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
8c79f732f8
- Add Dockerfile with multi-stage Python build - Add GitHub Actions workflow for automatic deployment on main branch - Add fly.toml with app configuration and auto-scaling settings - Add .dockerignore to exclude development files from build context
19 lines
495 B
YAML
19 lines
495 B
YAML
# See https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/
|
|
|
|
name: Fly Deploy
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
deploy:
|
|
name: Deploy app
|
|
runs-on: ubuntu-latest
|
|
concurrency: deploy-group # optional: ensure only one action runs at a time
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: superfly/flyctl-actions/setup-flyctl@master
|
|
- run: flyctl deploy --remote-only
|
|
env:
|
|
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|