[no ci] actions: archive types based on OS

Updated conditions for artifact archiving based on OS.
This commit is contained in:
Jay Lee
2026-02-27 05:23:27 -05:00
committed by GitHub
parent ba8242f480
commit 13f56afcd2

View File

@@ -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