mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-06-05 22:50:17 +00:00
3dbcb87cdf
Links deploys to GitHub's Deployments tab with the site URL. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
437 B
YAML
20 lines
437 B
YAML
name: Fly Deploy
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
deploy:
|
|
name: Deploy app
|
|
runs-on: ubuntu-latest
|
|
concurrency: deploy-group
|
|
environment:
|
|
name: production
|
|
url: https://kennethreitz.org
|
|
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 }}
|