From 3dbcb87cdff52873fa0c28670cad930f98aaf6e8 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 10 Apr 2026 09:44:13 -0400 Subject: [PATCH] Add production environment to Fly deploy workflow Links deploys to GitHub's Deployments tab with the site URL. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/fly.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/fly.yml b/.github/workflows/fly.yml index b721e90..29ddb8d 100644 --- a/.github/workflows/fly.yml +++ b/.github/workflows/fly.yml @@ -7,7 +7,10 @@ jobs: deploy: name: Deploy app runs-on: ubuntu-latest - concurrency: deploy-group # optional: ensure only one action runs at a time + concurrency: deploy-group + environment: + name: production + url: https://kennethreitz.org steps: - uses: actions/checkout@v4 - uses: superfly/flyctl-actions/setup-flyctl@master