We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 411ab52 commit f87a2e0Copy full SHA for f87a2e0
1 file changed
.github/workflows/build-release.yml
@@ -48,11 +48,7 @@ jobs:
48
try { $SkipPublish = [System.Boolean]::Parse('${{ inputs.skip-publish }}') } catch { $SkipPublish = $false }
49
try { $DryRun = [System.Boolean]::Parse('${{ inputs.dry-run }}') } catch { $DryRun = $true }
50
51
- $PackageEnv = if ($IsProductionBranch) {
52
- "publish-prod"
53
- } else {
54
- "publish-test"
55
- }
+ $PackageEnv = "publish-prod"
56
57
if (-Not $IsProductionBranch) {
58
$DryRun = $true # force dry run when not on main/master branch
0 commit comments