fix(ci): correct indentation in release workflow for CMAKE_TOOLCHAIN_FILE

- Adjusted the indentation for the CMAKE_TOOLCHAIN_FILE assignment in release.yml to ensure proper execution of the script.
- This change enhances readability and maintains consistency in the workflow configuration.

Benefits:
- Improves clarity in the workflow script, reducing potential errors during CI execution.
This commit is contained in:
scawful
2025-10-15 15:38:29 -04:00
parent 22e5fafc37
commit 38bdd2303b

View File

@@ -197,7 +197,7 @@ jobs:
$normalizedToolchain = $toolchain -replace '\\', '/'
"VCPKG_ROOT=$($vcpkgRoot -replace '\\', '/')" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
"CMAKE_TOOLCHAIN_FILE=$normalizedToolchain" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
"CMAKE_TOOLCHAIN_FILE=$normalizedToolchain" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
Write-Host "Persisted VCPKG_ROOT=$vcpkgRoot"
Write-Host "Persisted CMAKE_TOOLCHAIN_FILE=$normalizedToolchain"