diff options
author | 2021-03-26 15:35:01 -0600 | |
---|---|---|
committer | 2021-03-26 15:35:01 -0600 | |
commit | 9244fb33da569388349380e75788d1d12c258105 (patch) | |
tree | 44c781c4ee20780f95e7000330607cc785848ed8 /.github/workflows/release.yml | |
parent | github: run in-place build so wheel deps use release versions (diff) | |
download | pkgcheck-9244fb33da569388349380e75788d1d12c258105.tar.gz pkgcheck-9244fb33da569388349380e75788d1d12c258105.tar.bz2 pkgcheck-9244fb33da569388349380e75788d1d12c258105.zip |
github: use wheel2json to output built wheel info
Mostly for pre-release verification since `twine check` doesn't check
everything that `twine upload` errors out on, e.g. letting https-based
dev deps slip into release wheels.
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 40be46ae..bb5d1b75 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,6 @@ jobs: with: output-dir: dist env: - BUILD_WHEEL: true CIBW_BUILD: cp38-* cp39-* CIBW_ARCHS_LINUX: x86_64 i686 CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_24 @@ -59,8 +58,9 @@ jobs: - name: Install twine and check files run: | - pip install twine + pip install twine wheel-inspect twine check dist/* + wheel2json dist/*.whl - name: Upload files for tagged releases env: |