summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-11-05 21:49:53 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-11-05 22:00:08 -0400
commitbda513f823ca609e0408454fb2b5640257acdbca (patch)
tree8e58fa42d9509c76f5fbac15865bc5d0e6b7d827
parentd538c5596b83fa3ae1a525154c19e3cb082492ad (diff)
downloadpython-coveragepy-git-bda513f823ca609e0408454fb2b5640257acdbca.tar.gz
build: list the files created in a separate easily findable step
-rw-r--r--.github/workflows/kit.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml
index 81f33512..1fe709f6 100644
--- a/.github/workflows/kit.yml
+++ b/.github/workflows/kit.yml
@@ -72,6 +72,9 @@ jobs:
CIBW_TEST_COMMAND: python -c "from coverage.tracer import CTracer; print('CTracer OK!')"
run: |
python -m cibuildwheel --output-dir wheelhouse
+
+ - name: "List wheels"
+ run: |
ls -al wheelhouse/
- name: "Remove unwanted wheels"
@@ -106,6 +109,9 @@ jobs:
- name: "Build sdist"
run: |
python -m build
+
+ - name: "List tarballs"
+ run: |
ls -al dist/
- name: "Upload sdist"
@@ -136,6 +142,9 @@ jobs:
pypy3 -m build -w -C="--global-option=--python-tag" -C="--global-option=pp36"
pypy3 -m build -w -C="--global-option=--python-tag" -C="--global-option=pp37"
pypy3 -m build -w -C="--global-option=--python-tag" -C="--global-option=pp38"
+
+ - name: "List wheels"
+ run: |
ls -al dist/
- name: "Upload wheels"
@@ -185,6 +194,9 @@ jobs:
auditwheel show wheelhouse/*.whl
rm dist/*.whl
mv wheelhouse/*.whl dist/
+
+ - name: "List wheels"
+ run: |
ls -al dist/
- name: "Upload wheels"