Skip to content

Commit

Permalink
ci: use multiple artifact names
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii committed Feb 1, 2024
1 parent 80b3bca commit 97c43dc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/emscripten.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,5 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: emscripten-wheel
path: dist/*.whl
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
path: wheelhouse/*
name: test-wheels-${{ strategy.job-index }}

- name: Check wheels
run: pipx run twine check wheelhouse/*
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
path: dist/*.tar.gz
name: wheels-sdist

build_arch_wheels:
name: ${{ matrix.python }} on ${{ matrix.arch }}
Expand Down Expand Up @@ -84,6 +85,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
path: wheelhouse/*.whl
name: name: wheel-aarch-${{ strategy.job-index }}

build_wheels:
name: ${{ matrix.type }} ${{ matrix.arch }} on ${{ matrix.os }}
Expand Down Expand Up @@ -125,6 +127,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
path: wheelhouse/*.whl
name: name: wheels-${{ strategy.job-index }}

upload_all:
name: Upload if release
Expand All @@ -134,7 +137,8 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: artifact
pattern: wheels-*
merge-multiple: true
path: dist

- name: List all files
Expand Down

0 comments on commit 97c43dc

Please sign in to comment.