Skip to content

Commit

Permalink
fix: manual cbuildwheel steps (until action is in marketplace) (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
martibosch committed Aug 11, 2023
1 parent b121bfb commit a0cadc7
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,19 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: pypa/cibuildwheel@v2
# see https://github.com/pypa/cibuildwheel/issues/933
# - uses: pypa/cibuildwheel@v2

- name: Upload wheels
# Used to host cibuildwheel
- uses: actions/setup-python@v3

- name: install cibuildwheel
run: python -m pip install cibuildwheel==2.15.0

- name: build wheels
run: python -m cibuildwheel --output-dir wheelhouse

- name: upload wheels
uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl
Expand Down

0 comments on commit a0cadc7

Please sign in to comment.