We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1067680 + 4aaf379 commit a673b4dCopy full SHA for a673b4d
1 file changed
.github/workflows/release-wheels.yml
@@ -16,6 +16,22 @@ jobs:
16
build_sdist:
17
uses: ./.github/workflows/run-sdist.yml
18
19
+ upload_github:
20
+ needs: [build_wheels, build_sdist]
21
+ if: github.event_name == 'release' && github.ref_type == 'tag'
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - uses: actions/download-artifact@v8
25
+ with:
26
+ path: dist
27
+ merge-multiple: true
28
+
29
+ - name: Upload Wheels To GitHub Release Page
30
+ uses: softprops/action-gh-release@v3
31
32
+ token: ${{ secrets.GITHUB_TOKEN }}
33
+ files: dist/*
34
35
upload_pypi:
36
needs: [build_wheels, build_sdist]
37
if: github.event_name == 'release' && github.event.action == 'published'
0 commit comments