File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 41
41
- name : Build artifacts
42
42
run : python -m build
43
43
- name : Upload built artifacts for testing
44
- uses : actions/upload-artifact@v3
44
+ uses : actions/upload-artifact@v4
45
45
with :
46
46
name : ${{ env.sdist-artifact }}
47
47
# NOTE: Exact expected file names are specified here
@@ -187,11 +187,11 @@ jobs:
187
187
environment : pypi
188
188
if : github.event_name == 'release' && github.event.action == 'created'
189
189
steps :
190
- - name : Download the sdist artifact
191
- uses : actions/download-artifact@v3
190
+ - name : Download the artifacts
191
+ uses : actions/download-artifact@v4
192
192
with :
193
- name : artifact
194
- path : dist
193
+ name : ${{ env.sdist- artifact }}
194
+ path : dist/${{ env.sdist-name }}
195
195
- name : Publish package to PyPI
196
196
uses : pypa/gh-action-pypi-publish@release/v1
197
197
with :
You can’t perform that action at this time.
0 commit comments