From 260e78bab96cabb0f2bbee32d799b9a79cdd3e63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 15 Oct 2024 13:47:26 +0200 Subject: [PATCH] chore(ci): add archive listing to lint This makes debugging easier. --- .github/workflows/setup.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/setup.yml b/.github/workflows/setup.yml index e1ced8798c71..3a0cbc9b2cdb 100644 --- a/.github/workflows/setup.yml +++ b/.github/workflows/setup.yml @@ -138,6 +138,10 @@ jobs: - name: Cleanup dist # Remove files not supported on PyPI (eg. Sigstore signatures) run: find dist -mindepth 1 -not -name '*.tar.gz' -not -name '*.whl' -delete + - name: list wheel + run: unzip -l dist/*.whl + - name: list sdist + run: tar tvf dist/*.tar.gz - name: twine check run: uvx twine check --strict dist/* - name: pydistcheck