Skip to content

Commit e8fff5c

Browse files
committed
build(whl): add file listing
1 parent ddff95f commit e8fff5c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ampere-build-and-release.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,13 @@ jobs:
4141
- name: Build wheel
4242
run: CMAKE_ARGS="-DGGML_NATIVE=ON" python -m build --wheel --outdir wheelhouse/
4343

44+
- name: Inspect wheel contents
45+
run: |
46+
for whl in wheelhouse/*.whl; do
47+
echo "=== $(basename $whl) ==="
48+
python -m zipfile -l "$whl"
49+
done
50+
4451
- uses: actions/upload-artifact@v4
4552
with:
4653
name: wheel-py${{ matrix.python-version }}
@@ -49,6 +56,7 @@ jobs:
4956
release:
5057
name: Release
5158
needs: [build_wheels_arm64]
59+
if: startsWith(github.ref, 'refs/tags/')
5260
runs-on: [self-hosted]
5361
container:
5462
image: ubuntu:24.04

0 commit comments

Comments
 (0)