Skip to content

Commit 284d58b

Browse files
fix: use poetry build with verbose output for debugging
1 parent e2ba067 commit 284d58b

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,17 +90,18 @@ jobs:
9090
- name: Install Python dependencies
9191
run: |
9292
python -m pip install --upgrade pip
93-
pip install poetry build wheel
93+
pip install poetry
9494
9595
- name: Build wheel
9696
run: |
9797
export PLATFORM="${{ matrix.platform }}"
98-
python -m build --wheel
98+
echo "Building for platform: $PLATFORM"
99+
poetry build -vvv
99100
env:
100101
PLATFORM: ${{ matrix.platform }}
101102

102103
- name: List built wheels
103-
run: ls -la dist/
104+
run: ls -la dist/ || echo "dist/ not found, checking current directory..." && ls -la
104105

105106
- name: Upload wheel artifact
106107
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)