We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27ffd31 commit 9127e87Copy full SHA for 9127e87
.github/workflows/pypi.yml
@@ -30,8 +30,9 @@ jobs:
30
python -m build --wheel .
31
32
- name: Save sdist
33
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v4
34
with:
35
+ name: artifacts-${{ matrix.python }}
36
path: dist/*.whl
37
if-no-files-found: error
38
@@ -46,9 +47,9 @@ jobs:
46
47
id-token: write
48
if: github.ref == 'refs/heads/main'
49
steps:
- - uses: actions/download-artifact@v2
50
+ - uses: actions/download-artifact@v4
51
- name: artifact
52
+ pattern: artifacts-*
53
path: dist
54
55
- name: Publish package to TestPyPI
@@ -67,9 +68,9 @@ jobs:
67
68
69
if: startsWith(github.ref, 'refs/tags/v')
70
71
72
73
74
75
76
- name: Publish package to PyPI
0 commit comments