Skip to content

Commit 8290331

Browse files
authored
Merge pull request #88 from khalidabuhakmeh/fix-dotnet_nologo
Fix typo in environment variable key for DOTNET_NOLOGO
2 parents d9ea4db + 5e2526a commit 8290331

9 files changed

+9
-9
lines changed

.github/workflow-gen/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public static class StepExtensions
182182
{
183183
public static void EnvDefaults(this Workflow workflow)
184184
=> workflow.Env(
185-
("DOTNETT_NOLOGO", "true"),
185+
("DOTNET_NOLOGO", "true"),
186186
("DOTNET_CLI_TELEMETRY_OPTOUT", "true"));
187187

188188
public static void StepSetupDotNet(this Job job)

.github/workflows/access-token-management-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- access-token-management/**
1515
- Directory.Packages.props
1616
env:
17-
DOTNETT_NOLOGO: true
17+
DOTNET_NOLOGO: true
1818
DOTNET_CLI_TELEMETRY_OPTOUT: true
1919
jobs:
2020
build:

.github/workflows/access-token-management-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
required: true
1111
default: '0.0.0'
1212
env:
13-
DOTNETT_NOLOGO: true
13+
DOTNET_NOLOGO: true
1414
DOTNET_CLI_TELEMETRY_OPTOUT: true
1515
jobs:
1616
tag:

.github/workflows/identity-model-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- identity-model/**
1515
- Directory.Packages.props
1616
env:
17-
DOTNETT_NOLOGO: true
17+
DOTNET_NOLOGO: true
1818
DOTNET_CLI_TELEMETRY_OPTOUT: true
1919
jobs:
2020
build:

.github/workflows/identity-model-oidc-client-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- identity-model-oidc-client/**
1515
- Directory.Packages.props
1616
env:
17-
DOTNETT_NOLOGO: true
17+
DOTNET_NOLOGO: true
1818
DOTNET_CLI_TELEMETRY_OPTOUT: true
1919
jobs:
2020
build:

.github/workflows/identity-model-oidc-client-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
required: true
1111
default: '0.0.0'
1212
env:
13-
DOTNETT_NOLOGO: true
13+
DOTNET_NOLOGO: true
1414
DOTNET_CLI_TELEMETRY_OPTOUT: true
1515
jobs:
1616
tag:

.github/workflows/identity-model-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
required: true
1111
default: '0.0.0'
1212
env:
13-
DOTNETT_NOLOGO: true
13+
DOTNET_NOLOGO: true
1414
DOTNET_CLI_TELEMETRY_OPTOUT: true
1515
jobs:
1616
tag:

.github/workflows/ignore-this-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- ignore-this/**
1515
- Directory.Packages.props
1616
env:
17-
DOTNETT_NOLOGO: true
17+
DOTNET_NOLOGO: true
1818
DOTNET_CLI_TELEMETRY_OPTOUT: true
1919
jobs:
2020
build:

.github/workflows/ignore-this-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
required: true
1111
default: '0.0.0'
1212
env:
13-
DOTNETT_NOLOGO: true
13+
DOTNET_NOLOGO: true
1414
DOTNET_CLI_TELEMETRY_OPTOUT: true
1515
jobs:
1616
tag:

0 commit comments

Comments
 (0)