File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 45
45
pytest --doctest-modules -o junit_family=xunit2 --junitxml=junit/test-results-${{ matrix.python-version }}.xml
46
46
47
47
- name : Upload pytest test results
48
- uses : actions/upload-artifact@v3
48
+ uses : actions/upload-artifact@v4
49
49
with :
50
50
name : pytest-results-${{ matrix.python-version }}
51
51
path : junit/test-results-${{ matrix.python-version }}.xml
96
96
CIBW_SKIP : " pp* *-musllinux*"
97
97
CIBW_ARCHS_MACOS : ${{ matrix.buildplat[2] }}
98
98
99
- - uses : actions/upload-artifact@v3
99
+ - uses : actions/upload-artifact@v4
100
100
with :
101
- name : wheels
101
+ name : wheels-${{ matrix.python }}-${{ matrix.buildplat[1] }}-${{ matrix.buildplat[2] }}
102
102
path : ./wheelhouse/*.whl
103
103
104
104
upload :
@@ -108,9 +108,10 @@ jobs:
108
108
runs-on : ubuntu-latest
109
109
110
110
steps :
111
- - uses : actions/download-artifact@v2
111
+ - uses : actions/download-artifact@v4
112
112
with :
113
- name : wheels
113
+ pattern : wheels-*
114
+ merge-multiple : true
114
115
path : dist
115
116
116
117
- name : Display structure of downloaded files
@@ -119,6 +120,6 @@ jobs:
119
120
- uses : pypa/gh-action-pypi-publish@release/v1
120
121
if : startsWith(github.ref, 'refs/tags/')
121
122
with :
122
- skip_existing : true
123
+ skip-existing : true
123
124
user : ${{ secrets.PYPI_USERNAME }}
124
125
password : ${{ secrets.PYPI_PASSWORD }}
You can’t perform that action at this time.
0 commit comments