Skip to content

Commit

Permalink
Update build.yml (#42)
Browse files Browse the repository at this point in the history
* Update build.yml

* Update build.yml

upload/download artifacts @ v2 behaved differently than @ v4. This should fix them, in theory.
  • Loading branch information
daxpryce authored Jan 23, 2024
1 parent 4a06a86 commit dd42eea
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 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@v2

- 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 dd42eea

Please sign in to comment.