From dd42eea4e6120796eec24e4701ad02f62ef85004 Mon Sep 17 00:00:00 2001 From: Dax Pryce Date: Tue, 23 Jan 2024 14:15:03 -0800 Subject: [PATCH] Update build.yml (#42) * Update build.yml * Update build.yml upload/download artifacts @ v2 behaved differently than @ v4. This should fix them, in theory. --- .github/workflows/build.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5b54a30..249c2c4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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: |