Skip to content

Commit 0690884

Browse files
committed
update release workflow
1 parent e1680f0 commit 0690884

File tree

1 file changed

+24
-8
lines changed

1 file changed

+24
-8
lines changed

.github/workflows/release.yml

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,38 @@ env:
1414

1515
jobs:
1616
build-wheels:
17-
name: Build wheels on ${{ matrix.os }}
18-
runs-on: ${{ matrix.os }}
19-
strategy:
20-
matrix:
21-
os: [ ubuntu-24.04 ]
17+
# name: Build wheels on ${{ matrix.os }}
18+
# runs-on: ${{ matrix.os }}
19+
# strategy:
20+
# matrix:
21+
# os: [ ubuntu-24.04 ]
22+
# steps:
23+
# - name: Checkout
24+
# uses: actions/checkout@v4
25+
# - name: Set up Python
26+
# uses: actions/setup-python@v5
27+
# with:
28+
# python-version: ${{ env.PYTHON_VERSION }}
29+
# - name: Install cibuildwheel
30+
# run: python -m pip install cibuildwheel==${{ env.CIBW_VERSION }}
31+
# - name: Build wheels
32+
# run: python -m cibuildwheel --output-dir wheelhouse
33+
# - name: Upload artifacts
34+
# uses: actions/upload-artifact@v4
35+
# with:
36+
# name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
37+
# path: ./wheelhouse/*.whl
38+
# retention-days: 1
39+
runs-on: ubuntu-24.04
2240
steps:
2341
- name: Checkout
2442
uses: actions/checkout@v4
2543
- name: Set up Python
2644
uses: actions/setup-python@v5
2745
with:
2846
python-version: ${{ env.PYTHON_VERSION }}
29-
- name: Install cibuildwheel
30-
run: python -m pip install cibuildwheel==${{ env.CIBW_VERSION }}
3147
- name: Build wheels
32-
run: python -m cibuildwheel --output-dir wheelhouse
48+
run: python -m build -w -o wheelhouse
3349
- name: Upload artifacts
3450
uses: actions/upload-artifact@v4
3551
with:

0 commit comments

Comments
 (0)