We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1092cb9 commit e574964Copy full SHA for e574964
.github/workflows/release.yml
@@ -12,6 +12,7 @@ permissions:
12
13
jobs:
14
build_wheels:
15
+ name: Build wheels
16
runs-on: ${{ matrix.os }}
17
strategy:
18
matrix:
@@ -53,6 +54,7 @@ jobs:
53
54
path: dist/*.tar.gz
55
56
upload_pypi:
57
+ name: Upload to PyPI
58
needs: [build_wheels, build_sdist]
59
runs-on: ubuntu-latest
60
environment: pypi
pyproject.toml
@@ -58,6 +58,7 @@ repair-wheel-command = [
[tool.cibuildwheel.windows]
repair-wheel-command = [
61
+ "copy {wheel} {dest_dir}",
62
"pip install -U abi3audit",
63
"pipx run abi3audit --strict --report {wheel}",
64
]
0 commit comments