From 911e54666d600a73c17d690efb926d60da5bace4 Mon Sep 17 00:00:00 2001 From: NorthernMan54 <19808920+NorthernMan54@users.noreply.github.com> Date: Tue, 26 Nov 2024 22:31:05 -0500 Subject: [PATCH] Update Prepare prebuild environment.yml --- .github/workflows/Prepare prebuild environment.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/Prepare prebuild environment.yml b/.github/workflows/Prepare prebuild environment.yml index cbb3382c..88a29022 100644 --- a/.github/workflows/Prepare prebuild environment.yml +++ b/.github/workflows/Prepare prebuild environment.yml @@ -283,9 +283,15 @@ jobs: if [ "$fileCount" -ne ${{ matrix.NPMCOUNT }} ]; then echo "::warning::Release NPM Prebuild count ${fileCount}, expected ${{ matrix.NPMCOUNT }}"; else echo "::notice::Release NPM Prebuild count ${fileCount}, expected ${{ matrix.NPMCOUNT }}"; fi - name: Create Archive of prebuilds + if: runner.os != 'Windows' run: | tar -czf archive.${{ matrix.name }}.tar.gz prebuilds/ + - name: Create Archive of prebuilds + if: runner.os == 'Windows' + run: | + tar -czf archive.${{ matrix.name }}.tar.gz prebuilds + - uses: actions/upload-artifact@v4 with: name: ${{ matrix.name }}