[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:08 PDT 2026


https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/218698

Backport 3036c565181b7cd13952e1399ba0e21bb8b2afb8

Requested by: @tstellar

>From 6bf1091aafe7b05b5a19be49984058801eedd431 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Tue, 25 Aug 2026 07:33:48 -0700
Subject: [PATCH] workflows/release-binaries: Fix setting Wix PATH for ARM64
 Windows (#218680)

This accidentally omitted from f75f48e3ce41227c5a0ae5d2c6d6ea90100b9bc4.

(cherry picked from commit 3036c565181b7cd13952e1399ba0e21bb8b2afb8)
---
 .github/workflows/release-binaries.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



More information about the llvm-branch-commits mailing list