Skip to content

Commit 5dbed0d

Browse files
📝[Fix]: Convert Linter environment variable 'VALIDATE_BIOME_FORMAT' to boolean in PSModule configuration
1 parent 1fde19c commit 5dbed0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
$map = $env:RAW_JSON | ConvertFrom-Json -AsHashtable
117117
118118
foreach ($key in $map.Keys) {
119-
$value = $map[$key]
119+
$value = ($map[$key]).ToString().ToLower()
120120
121121
# Persist for following steps in this job
122122
"$key=$value" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append

tests/srcWithManifestTestRepo/.github/PSModule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Publish:
1313
AutoCleanup: false
1414
Linter:
1515
env:
16-
VALIDATE_BIOME_FORMAT: 'false'
16+
VALIDATE_BIOME_FORMAT: false
1717
VALIDATE_BIOME_LINT: 'false'
1818
VALIDATE_GITHUB_ACTIONS_ZIZMOR: 'false'
1919
VALIDATE_JSCPD: 'false'

0 commit comments

Comments
 (0)