fix(ci): Default all GHA env variables to 'prod' set (#11572)

Co-authored-by: Shreya Keshive <shreyakeshive@google.com>
This commit is contained in:
Richie Foreman
2025-10-21 15:02:48 -04:00
committed by GitHub
parent 193b4bba91
commit 74a7771943
9 changed files with 12 additions and 12 deletions
+3 -3
View File
@@ -39,7 +39,7 @@ jobs:
calculate-versions:
name: 'Calculate Versions and Plan'
runs-on: 'ubuntu-latest'
environment: '${{ github.event.inputs.environment }}'
environment: "${{ github.event.inputs.environment || 'prod' }}"
outputs:
STABLE_VERSION: '${{ steps.versions.outputs.STABLE_VERSION }}'
@@ -198,7 +198,7 @@ jobs:
name: 'Publish preview'
needs: ['calculate-versions', 'test']
runs-on: 'ubuntu-latest'
environment: '${{ github.event.inputs.environment }}'
environment: "${{ github.event.inputs.environment || 'prod' }}"
permissions:
contents: 'write'
packages: 'write'
@@ -264,7 +264,7 @@ jobs:
name: 'Publish stable'
needs: ['calculate-versions', 'test', 'publish-preview']
runs-on: 'ubuntu-latest'
environment: '${{ github.event.inputs.environment }}'
environment: "${{ github.event.inputs.environment || 'prod' }}"
permissions:
contents: 'write'
packages: 'write'