From 13f56afcd2674a9bf71970cdf0cb507cff5e5ac2 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Fri, 27 Feb 2026 05:23:27 -0500 Subject: [PATCH] [no ci] actions: archive types based on OS Updated conditions for artifact archiving based on OS. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 074d3cb5..dbdf1322 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -806,7 +806,7 @@ jobs: - name: Archive tar.xz artifacts uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 - if: always() + if: runner.os != 'Windows' with: archive: false if-no-files-found: ignore @@ -815,7 +815,7 @@ jobs: - name: Archive zip artifacts uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 - if: always() + if: runner.os == 'Windows' with: archive: false if-no-files-found: ignore @@ -824,7 +824,7 @@ jobs: - name: Archive msi artifacts uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 - if: always() + if: runner.os == 'Windows' with: archive: false if-no-files-found: ignore