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 e2ba067 commit 284d58bCopy full SHA for 284d58b
1 file changed
.github/workflows/release.yml
@@ -90,17 +90,18 @@ jobs:
90
- name: Install Python dependencies
91
run: |
92
python -m pip install --upgrade pip
93
- pip install poetry build wheel
+ pip install poetry
94
95
- name: Build wheel
96
97
export PLATFORM="${{ matrix.platform }}"
98
- python -m build --wheel
+ echo "Building for platform: $PLATFORM"
99
+ poetry build -vvv
100
env:
101
PLATFORM: ${{ matrix.platform }}
102
103
- name: List built wheels
- run: ls -la dist/
104
+ run: ls -la dist/ || echo "dist/ not found, checking current directory..." && ls -la
105
106
- name: Upload wheel artifact
107
uses: actions/upload-artifact@v4
0 commit comments