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 dcb5d08 commit cc7e89fCopy full SHA for cc7e89f
.github/workflows/main.yml
@@ -485,7 +485,9 @@ jobs:
485
Write-Host "Building site for $environment ";
486
$env:HUGO_ENV = "$environment";
487
Write-Host "HUGO_ENV is set to $env:HUGO_ENV"
488
- hugo --source docs --config hugo.yaml,hugo.$environment.yaml --logLevel debug; # --minify
+ $configFiles = "hugo.yaml,hugo.$environment.yaml"
489
+ Write-Host "Using config files: $configFiles"
490
+ hugo --source docs --config $configFiles --logLevel debug; # --minify
491
- uses: actions/upload-artifact@v4
492
with:
493
name: AzureDevOpsMigrationTools-Site2
0 commit comments