We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeb0a86 commit 3db8450Copy full SHA for 3db8450
2 files changed
.github/workflows/release.yml
@@ -35,4 +35,18 @@ jobs:
35
- name: Release
36
uses: softprops/action-gh-release@v2
37
with:
38
- files: dist/*.whl
+ files: dist/*.whl
39
+ upload_pypi:
40
+ needs: [build_wheels]
41
+ runs-on: ubuntu-latest
42
+ environment: pypi
43
+ permissions:
44
+ id-token: write
45
+ steps:
46
+ - uses: actions/download-artifact@v4
47
+ with:
48
+ # unpacks all CIBW artifacts into dist/
49
+ pattern: cibw-*
50
+ path: dist
51
+ merge-multiple: true
52
+ - uses: pypa/gh-action-pypi-publish@release/v1
pyproject.toml
@@ -21,7 +21,6 @@ include = ["hyperhyphen"]
21
pdfextract = ["*.c"]
22
23
[tool.cibuildwheel]
24
-
25
test-command = "pytest {project}/tests"
26
test-requires = ["pytest"]
27
0 commit comments