From b6dd7e354c2b425a1d9c82eaa72c61013bd27936 Mon Sep 17 00:00:00 2001 From: Martin Porwoll Date: Fri, 13 Feb 2026 21:41:02 +0000 Subject: [PATCH] fix(ci): remove environment block causing startup_failure The GitHub environment 'production' was causing startup_failure on all workflow_dispatch runs (0 jobs started). Remove the environment reference to unblock deployments. Can be re-added once the root cause is identified. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/deploy-production.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index 73ed0ef..7b02f6c 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -204,9 +204,6 @@ jobs: runs-on: ubuntu-latest needs: [preflight, pre-tests, backup] if: always() && (needs.pre-tests.result == 'success' || needs.pre-tests.result == 'skipped') && (needs.backup.result == 'success' || needs.backup.result == 'skipped') - environment: - name: production - url: ${{ env.PRODUCTION_URL }} steps: - name: Checkout code uses: actions/checkout@v4