github-workflow: fix mixed up upload/download source vs. binary wheel artifacts
This commit is contained in:
parent
c2a28fc333
commit
ba275dd62a
12
.github/workflows/pypi-deploy.yml
vendored
12
.github/workflows/pypi-deploy.yml
vendored
@ -44,11 +44,11 @@ jobs:
|
||||
working-directory: python/
|
||||
# env:
|
||||
# CIBW_BUILD: cp36-* cp37-* cp38-* cp39-* cp310-*
|
||||
- name: Store source wheels
|
||||
- name: Store binary wheels
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: source-wheels
|
||||
path: dist/*.tar.gz
|
||||
name: binary-wheels
|
||||
path: wheelhouse/*.whl
|
||||
|
||||
build_sdist:
|
||||
name: Build source distribution
|
||||
@ -66,11 +66,11 @@ jobs:
|
||||
- name: Build sdist
|
||||
run: python setup.py sdist
|
||||
working-directory: python/
|
||||
- name: Store binary wheels
|
||||
- name: Store source wheels
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: binary-wheels
|
||||
path: wheelhouse/*.whl
|
||||
name: source-wheels
|
||||
path: dist/*.tar.gz
|
||||
|
||||
upload_pypi:
|
||||
name: Upload binary wheels to PyPI
|
||||
|
Loading…
x
Reference in New Issue
Block a user