From 55a46c3c88e5f2276f530cf7ed6fcf109338bb3f Mon Sep 17 00:00:00 2001 From: "d.rudenko" Date: Mon, 14 Oct 2024 19:58:05 +0200 Subject: [PATCH] Action debug info --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 45895c5..7767e48 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,10 @@ jobs: - name: Build wheels on macOS and Linux if: runner.os != 'Windows' - run: maturin build --release --skip-auditwheel --out dist + run: | + maturin build --release --skip-auditwheel --out dist + ls -la dist # List contents of dist to verify wheels are built + - name: Build wheels on Windows if: runner.os == 'Windows' @@ -43,6 +46,7 @@ jobs: # Install Visual Studio Build Tools for Rust on Windows choco install visualstudio2019buildtools --version=16.11.7 maturin build --release --out dist + dir dist # List contents of dist to verify wheels are built upload-to-pypi: runs-on: ubuntu-latest # Ensure this only runs on Linux