Skip to content

Commit bda513f

Browse files
committed
build: list the files created in a separate easily findable step
1 parent d538c55 commit bda513f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/kit.yml

+12
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ jobs:
7272
CIBW_TEST_COMMAND: python -c "from coverage.tracer import CTracer; print('CTracer OK!')"
7373
run: |
7474
python -m cibuildwheel --output-dir wheelhouse
75+
76+
- name: "List wheels"
77+
run: |
7578
ls -al wheelhouse/
7679
7780
- name: "Remove unwanted wheels"
@@ -106,6 +109,9 @@ jobs:
106109
- name: "Build sdist"
107110
run: |
108111
python -m build
112+
113+
- name: "List tarballs"
114+
run: |
109115
ls -al dist/
110116
111117
- name: "Upload sdist"
@@ -136,6 +142,9 @@ jobs:
136142
pypy3 -m build -w -C="--global-option=--python-tag" -C="--global-option=pp36"
137143
pypy3 -m build -w -C="--global-option=--python-tag" -C="--global-option=pp37"
138144
pypy3 -m build -w -C="--global-option=--python-tag" -C="--global-option=pp38"
145+
146+
- name: "List wheels"
147+
run: |
139148
ls -al dist/
140149
141150
- name: "Upload wheels"
@@ -185,6 +194,9 @@ jobs:
185194
auditwheel show wheelhouse/*.whl
186195
rm dist/*.whl
187196
mv wheelhouse/*.whl dist/
197+
198+
- name: "List wheels"
199+
run: |
188200
ls -al dist/
189201
190202
- name: "Upload wheels"

0 commit comments

Comments
 (0)