From 5bad0902878a7665abf0e99d313ff4fa1a509307 Mon Sep 17 00:00:00 2001 From: Manu Garg Date: Fri, 29 Dec 2023 15:06:43 -0800 Subject: [PATCH] Update build.yml Include os name in dist name. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c3d022f..c518545 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -71,14 +71,14 @@ jobs: if: ${{ matrix.os != 'windows' }} uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 with: - name: pacparser-dist + name: pacparser-dist-${{ matrix.os }} path: src/pacparser*.zip - name: Upload dist (windows) if: ${{ matrix.os == 'windows' }} uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 with: - name: pacparser-${{ matrix.os }} + name: pacparser-dist-${{ matrix.os }} path: src/dist python-module-build: