Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
upload/download artifacts @ v2 behaved differently than @ v4. This should fix them, in theory.
  • Loading branch information
daxpryce authored Jan 23, 2024
1 parent 39063c7 commit 94f2d8a
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,10 @@ jobs:
pip install ../../target/wheels/*.whl
python -m unittest
shell: bash

- uses: actions/upload-artifact@v4
with:
name: dist
name: dist-${{ matrix.os }}
path: |
target/wheels/*.whl
target/wheels/*.tar.gz
Expand All @@ -111,7 +112,15 @@ jobs:
python-version: 3.8
- uses: actions/download-artifact@v4
with:
name: dist
name: dist-ubuntu-latest
path: dist/
- uses: actions/download-artifact@v4
with:
name: dist-windows-latest
path: dist/
- uses: actions/download-artifact@v4
with:
name: dist-windows-latest
path: dist/
- name: Generate SHA256 files for each wheel
run: |
Expand Down

0 comments on commit 94f2d8a

Please sign in to comment.