Skip to content

Commit

Permalink
Use new way to upload files
Browse files Browse the repository at this point in the history
  • Loading branch information
pombredanne committed Feb 13, 2024
1 parent 0fb759c commit 7fa2c3a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test-and-build.yml
Expand Up @@ -83,6 +83,7 @@ jobs:
- name: Collect built wheels
uses: actions/upload-artifact@v4
with:
name: intbitset-wheels-${{ matrix.os }}-${{ matrix.ach }}-${{ matrix.type }}
path: wheelhouse/*.whl

build_sdist:
Expand All @@ -104,8 +105,21 @@ jobs:
- name: Collect built sdist
uses: actions/upload-artifact@v4
with:
name: intbitset-sdist
path: dist/*.tar.gz

merge:
runs-on: ubuntu-latest
needs:
- build_sdist
- build_wheels
steps:
- name: Merge created wheels and sdist in a single zip
uses: actions/upload-artifact/merge@v4
with:
name: intbitset-build
pattern: intbitset-*

test_on_many_oses:
name: Run tests ${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 7fa2c3a

Please sign in to comment.