Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
surgura committed Dec 11, 2023
1 parent 75a2e82 commit cd2de34
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,20 @@ on: [push, pull_request]

jobs:
build_wheels:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022, macos-12, ubuntu-22.04]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: actions/setup-python@v3
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.16.2
with:
python-version: 3.11
- name: Build wheels
run: python -m cibuildwheel --output-dir dist
env:
CIBW_BUILD: cp310-* cp311-*
CIBW_ARCHS_WINDOWS: AMD64
CIBW_ARCHS_MACOS: x86_64 arm64
CIBW_ARCHS_LINUX: x86_64
run: pip wheel --no-deps
- uses: actions/upload-artifact@v3
with:
name: dist
path: ./dist/*.whl
path: ./dist/**/*.whl

pypi-publish:
name: Upload release to PyPI
Expand Down

0 comments on commit cd2de34

Please sign in to comment.