From 71e983231f996f19fad4befc42dc165e96c19631 Mon Sep 17 00:00:00 2001 From: Adrian Taut Date: Thu, 22 Jan 2026 15:05:12 +0200 Subject: [PATCH] fix: revert env usage in job-level properties MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit env context is not available for job name and environment properties. These are evaluated before the job runs. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/infra-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/infra-deploy.yml b/.github/workflows/infra-deploy.yml index 585a1034b5..59f1d37db2 100644 --- a/.github/workflows/infra-deploy.yml +++ b/.github/workflows/infra-deploy.yml @@ -34,9 +34,9 @@ defaults: jobs: deploy: - name: Deploy to ${{ env.ENVIRONMENT }} + name: Deploy to Production runs-on: ubuntu-latest - environment: ${{ env.ENVIRONMENT }} + environment: production steps: - name: Deployment Info run: |