[llvm-branch-commits] [llvm] release/23.x: workflows/release-binaries: Always dump Wix log on Windows (#212056) (PR #215025)

Douglas Yung via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Sat Aug 8 22:54:25 PDT 2026


https://github.com/dyung updated https://github.com/llvm/llvm-project/pull/215025

>From 6f8827b99366c57b16332c86b1b0bb6cb90e84c4 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Sat, 8 Aug 2026 13:38:38 -0700
Subject: [PATCH] workflows/release-binaries: Always dump Wix log on Windows
 (#212056)

Dumping it only on successful builds isn't useful.

(cherry picked from commit cb274010df165e9187233b50babc89fff2103ed5)
---
 .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 cd27599403f56..e7963876c469a 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -296,7 +296,7 @@ jobs:
         echo "windows-installer-filename=$(Split-Path -Path $installer -Leaf)" >> $env:GITHUB_OUTPUT
     
     - name: Dump Wix logs
-      if: runner.os == 'Windows'
+      if: runner.os == 'Windows' && always()
       env:
         LLVM_VERSION: ${{ needs.prepare.outputs.release-version }}
         BUILD_DIR_SUFFIX: ${{ case(runner.arch == 'ARM64', 'arm64', 'amd64') }}



More information about the llvm-branch-commits mailing list