Skip to content

Commit

Permalink
Merge pull request #88 from khalidabuhakmeh/fix-dotnet_nologo
Browse files Browse the repository at this point in the history
Fix typo in environment variable key for DOTNET_NOLOGO
  • Loading branch information
damianh authored Jan 28, 2025
2 parents d9ea4db + 5e2526a commit 8290331
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflow-gen/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public static class StepExtensions
{
public static void EnvDefaults(this Workflow workflow)
=> workflow.Env(
("DOTNETT_NOLOGO", "true"),
("DOTNET_NOLOGO", "true"),
("DOTNET_CLI_TELEMETRY_OPTOUT", "true"));

public static void StepSetupDotNet(this Job job)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/access-token-management-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- access-token-management/**
- Directory.Packages.props
env:
DOTNETT_NOLOGO: true
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/access-token-management-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
required: true
default: '0.0.0'
env:
DOTNETT_NOLOGO: true
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
tag:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/identity-model-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- identity-model/**
- Directory.Packages.props
env:
DOTNETT_NOLOGO: true
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/identity-model-oidc-client-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- identity-model-oidc-client/**
- Directory.Packages.props
env:
DOTNETT_NOLOGO: true
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/identity-model-oidc-client-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
required: true
default: '0.0.0'
env:
DOTNETT_NOLOGO: true
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
tag:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/identity-model-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
required: true
default: '0.0.0'
env:
DOTNETT_NOLOGO: true
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
tag:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ignore-this-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- ignore-this/**
- Directory.Packages.props
env:
DOTNETT_NOLOGO: true
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ignore-this-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
required: true
default: '0.0.0'
env:
DOTNETT_NOLOGO: true
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
tag:
Expand Down

0 comments on commit 8290331

Please sign in to comment.