From 551b1e5d5a734532f77f71e41fbc17f4d4a8d2f6 Mon Sep 17 00:00:00 2001 From: scawful Date: Wed, 15 Oct 2025 16:19:00 -0400 Subject: [PATCH] fix(ci): correct indentation in release workflow logging - Adjusted the indentation for logging statements in the release.yml workflow to ensure proper execution and readability. - This change maintains consistency in the workflow configuration and enhances clarity in the script. Benefits: - Improves the clarity of the workflow script, reducing potential errors during CI execution. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 849a6a94..a2523f6b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -199,8 +199,8 @@ jobs: "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 - Write-Host "Persisted VCPKG_ROOT=$vcpkgRoot" - Write-Host "Persisted CMAKE_TOOLCHAIN_FILE=$normalizedToolchain" + Write-Host "Persisted VCPKG_ROOT=$vcpkgRoot" + Write-Host "Persisted CMAKE_TOOLCHAIN_FILE=$normalizedToolchain" - name: "Prefetch MSYS runtime (Windows)" if: runner.os == 'Windows'