Skip to content

Commit e6220ff

Browse files
committedOct 17, 2024·
Fix release workflow
1 parent 78a18c7 commit e6220ff

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎.github/workflows/pythonpublish.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
- name: Build a binary wheel and a source tarball
1919
run: python -m build
2020
- name: Store the distribution packages
21-
uses: actions/upload-artifact@v3
21+
uses: actions/upload-artifact@v4
2222
with:
23-
name: python-package-distributions
24-
path: dist/*
23+
name: release-dists
24+
path: dist/
2525
publish:
2626
name: >-
2727
Publish to PyPI
@@ -34,9 +34,9 @@ jobs:
3434
id-token: write
3535
steps:
3636
- name: Download all the dists
37-
uses: actions/download-artifact@v4.1.7
37+
uses: actions/download-artifact@v4
3838
with:
39-
name: python-package-distributions
39+
name: release-dists
4040
path: dist/
4141
- name: Publish package distributions to PyPI
4242
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)
Please sign in to comment.