Skip to content

Commit

Permalink
Update all.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
psobot authored Sep 15, 2024
1 parent e1e05ca commit 3000e5a
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -806,17 +806,28 @@ jobs:
CIBW_FREE_THREADED_SUPPORT: "1"
- uses: actions/upload-artifact@v4
with:
name: wheel-${{ matrix.build }}
path: ./wheelhouse/*.whl

merge:
runs-on: ubuntu-latest
needs: build-wheels
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: wheels
pattern: wheel-*

upload-pypi:
needs: [build-wheels, run-tests-with-address-sanitizer, run-tests]
needs: [merge, run-tests-with-address-sanitizer, run-tests]
runs-on: 'ubuntu-20.04'
name: "Upload wheels to PyPI"
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v2
with:
name: artifact
name: wheels
path: dist
- uses: pypa/gh-action-pypi-publish@v1.4.2
with:
Expand Down

0 comments on commit 3000e5a

Please sign in to comment.