Skip to content

Commit 911e546

Browse files
committed
Update Prepare prebuild environment.yml
1 parent ea41cc8 commit 911e546

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/Prepare prebuild environment.yml

+6
Original file line numberDiff line numberDiff line change
@@ -283,9 +283,15 @@ jobs:
283283
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
284284
285285
- name: Create Archive of prebuilds
286+
if: runner.os != 'Windows'
286287
run: |
287288
tar -czf archive.${{ matrix.name }}.tar.gz prebuilds/
288289
290+
- name: Create Archive of prebuilds
291+
if: runner.os == 'Windows'
292+
run: |
293+
tar -czf archive.${{ matrix.name }}.tar.gz prebuilds
294+
289295
- uses: actions/upload-artifact@v4
290296
with:
291297
name: ${{ matrix.name }}

0 commit comments

Comments
 (0)