We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1e5e20 commit 85783c6Copy full SHA for 85783c6
.github/workflows/ci.yml
@@ -86,7 +86,7 @@ jobs:
86
- name: Upload Sdist and Wheel to GitHub
87
uses: actions/upload-artifact@v4
88
with:
89
- name: module
+ name: dist
90
path: "dist/*"
91
if-no-files-found: error
92
retention-days: 1
@@ -95,12 +95,14 @@ jobs:
95
publish:
96
# Don't publish unless we were run with an explicit version.
97
if: ${{ inputs.version != '' }}
98
+ needs:
99
+ - build
100
runs-on: ubuntu-22.04
101
steps:
102
- name: Download Sdist and Wheel from GitHub
103
uses: actions/download-artifact@v4
104
105
106
path: "dist"
107
108
- name: Publish to PyPI
0 commit comments