We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d6f049 commit b71c721Copy full SHA for b71c721
.github/workflows/wheels.yml
@@ -39,6 +39,7 @@ concurrency:
39
cancel-in-progress: true
40
41
env:
42
+ EXPECTED_DISTS: 98
43
FORCE_COLOR: 1
44
45
jobs:
@@ -287,3 +288,20 @@ jobs:
287
288
uses: pypa/gh-action-pypi-publish@release/v1
289
with:
290
attestations: true
291
+
292
+ count-dists:
293
+ needs: [build-native-wheels, windows, sdist]
294
+ runs-on: ubuntu-latest
295
+ name: Count dists
296
+ steps:
297
+ - uses: actions/download-artifact@v4
298
+ with:
299
+ pattern: dist-*
300
+ path: dist
301
+ merge-multiple: true
302
+ - name: "What did we get?"
303
+ run: |
304
+ ls -alR
305
+ echo "Number of dists, should be $EXPECTED_DISTS:"
306
+ ls -1 dist | wc -l
307
+ files=$(ls dist 2>/dev/null | wc -l) && [ "$files" -eq $EXPECTED_DISTS ] || exit 1
0 commit comments