Another upload fix maybe.
This commit is contained in:
parent
4125491113
commit
ea42a66eb9
1 changed files with 4 additions and 2 deletions
6
.github/workflows/build-test-pypi.yml
vendored
6
.github/workflows/build-test-pypi.yml
vendored
|
@ -32,6 +32,7 @@ jobs:
|
||||||
- name: Put SDist in artifact container
|
- name: Put SDist in artifact container
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
name: cibw-sdist
|
||||||
path: dist/*.tar.gz
|
path: dist/*.tar.gz
|
||||||
- name: Check SDist metadata
|
- name: Check SDist metadata
|
||||||
run: |
|
run: |
|
||||||
|
@ -72,7 +73,7 @@ jobs:
|
||||||
- name: Upload wheels to artifact container
|
- name: Upload wheels to artifact container
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
#name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
|
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
|
||||||
path: ./wheelhouse/*.whl
|
path: ./wheelhouse/*.whl
|
||||||
|
|
||||||
upload_all:
|
upload_all:
|
||||||
|
@ -82,8 +83,9 @@ jobs:
|
||||||
- name: Get SDist and wheels from artifact container
|
- name: Get SDist and wheels from artifact container
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: artifact
|
pattern: cibw-*
|
||||||
path: dist
|
path: dist
|
||||||
|
merge-multiple: true
|
||||||
- name: Publish wheels to Test PyPI
|
- name: Publish wheels to Test PyPI
|
||||||
uses: pypa/gh-action-pypi-publish@v1.10.1
|
uses: pypa/gh-action-pypi-publish@v1.10.1
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue