File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4545 pytest --doctest-modules -o junit_family=xunit2 --junitxml=junit/test-results-${{ matrix.python-version }}.xml
4646
4747 - name : Upload pytest test results
48- uses : actions/upload-artifact@v3
48+ uses : actions/upload-artifact@v4
4949 with :
5050 name : pytest-results-${{ matrix.python-version }}
5151 path : junit/test-results-${{ matrix.python-version }}.xml
9696 CIBW_SKIP : " pp* *-musllinux*"
9797 CIBW_ARCHS_MACOS : ${{ matrix.buildplat[2] }}
9898
99- - uses : actions/upload-artifact@v3
99+ - uses : actions/upload-artifact@v4
100100 with :
101- name : wheels
101+ name : wheels-${{ matrix.python }}-${{ matrix.buildplat[1] }}-${{ matrix.buildplat[2] }}
102102 path : ./wheelhouse/*.whl
103103
104104 upload :
@@ -108,9 +108,10 @@ jobs:
108108 runs-on : ubuntu-latest
109109
110110 steps :
111- - uses : actions/download-artifact@v2
111+ - uses : actions/download-artifact@v4
112112 with :
113- name : wheels
113+ pattern : wheels-*
114+ merge-multiple : true
114115 path : dist
115116
116117 - name : Display structure of downloaded files
@@ -119,6 +120,6 @@ jobs:
119120 - uses : pypa/gh-action-pypi-publish@release/v1
120121 if : startsWith(github.ref, 'refs/tags/')
121122 with :
122- skip_existing : true
123+ skip-existing : true
123124 user : ${{ secrets.PYPI_USERNAME }}
124125 password : ${{ secrets.PYPI_PASSWORD }}
You can’t perform that action at this time.
0 commit comments