[llvm-branch-commits] [llvm] release/23.x: workflows/release-binaries: Always dump Wix log on Windows (#212056) (PR #215025)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Sat Aug 8 13:58:54 PDT 2026
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/215025
Backport cb274010df165e9187233b50babc89fff2103ed5
Requested by: @tstellar
>From 4e1da8b7fb92ad5674a55e390ef202e9e3290645 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 3c1b775419d06..d12052dfd92eb 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