We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa11f8b commit 30dee94Copy full SHA for 30dee94
‎.github/workflows/workflow.yml‎
@@ -111,12 +111,13 @@ jobs:
111
112
- name: Load dynamic envs
113
env:
114
- RAW_JSON: ${{ toJson(fromJson(needs.Get-Settings.outputs.Settings).Linter) }}
+ SETTINGS: ${{ needs.Get-Settings.outputs.Settings }}
115
run: |
116
- $env:RAW_JSON
117
- $linter = $env:RAW_JSON | ConvertFrom-Json -AsHashtable
+ $env:SETTINGS
+ $settings = $env:SETTINGS | ConvertFrom-Json -AsHashtable
118
+ $linter = $settings.Linter
119
$env = $linter.env
- Write-Host "$($env | Format-Table -AutoSize | Out-String)"
120
+ $env
121
122
foreach ($key in $env.Keys) {
123
$value = $env[$key]
0 commit comments