Skip to content

Commit

Permalink
Fix build after actions update (#179)
Browse files Browse the repository at this point in the history
Include os name in dist name.
  • Loading branch information
manugarg authored Dec 29, 2023
1 parent 69c34f4 commit ba807d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit ba807d6

Please sign in to comment.