[llvm-branch-commits] [llvm] release/23.x: workflows/release-binaries: Fix setting Wix PATH for ARM64 Windows (#218680) (PR #218698)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Aug 25 07:41:57 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: llvmbot
<details>
<summary>Changes</summary>
Backport 3036c565181b7cd13952e1399ba0e21bb8b2afb8
Requested by: @<!-- -->tstellar
---
Full diff: https://github.com/llvm/llvm-project/pull/218698.diff
1 Files Affected:
- (modified) .github/workflows/release-binaries.yml (+1-1)
``````````diff
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 0e175706606f5..274884cadfad4 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -296,7 +296,7 @@ jobs:
run: |
choco install wixtoolset --version 3.14.1.20250415
# Add wix install directory to PATH.
- Split-Path (Get-ChildItem -Path "C:\" -Filter candle.exe -Recurse -ErrorAction SilentlyContinue | Select-Object -First 1).FullName
+ Split-Path (Get-ChildItem -Path "C:\" -Filter candle.exe -Recurse -ErrorAction SilentlyContinue | Select-Object -First 1).FullName >> $env:GITHUB_PATH
- name: Build Windows
id: build-windows
``````````
</details>
https://github.com/llvm/llvm-project/pull/218698
More information about the llvm-branch-commits
mailing list