From 4ede2318e35d1931e2bf4bb95ca247cdb05d945f Mon Sep 17 00:00:00 2001 From: froejdh_e Date: Fri, 11 Apr 2025 15:31:40 +0200 Subject: [PATCH] wheel --- .github/workflows/build_wheel.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build_wheel.yml diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml new file mode 100644 index 0000000..c4ec706 --- /dev/null +++ b/.github/workflows/build_wheel.yml @@ -0,0 +1,22 @@ +name: Build wheel + +on: [push, pull_request] + +jobs: + build_wheels: + name: Build wheels on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest,] + + steps: + - uses: actions/checkout@v4 + + - name: Build wheels + run: pipx run cibuildwheel==2.23.0 + + - uses: actions/upload-artifact@v4 + with: + name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} + path: ./wheelhouse/*.whl \ No newline at end of file