Skip to content

Commit

Permalink
Action debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
d.rudenko committed Oct 14, 2024
1 parent a0039b1 commit 55a46c3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,18 @@ 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'
run: |
# 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
Expand Down

0 comments on commit 55a46c3

Please sign in to comment.