From 7faa7219ac3f112cec490636abc597bb503abc0f Mon Sep 17 00:00:00 2001 From: Luke Southam Date: Wed, 14 Dec 2022 15:43:51 +0000 Subject: [PATCH] Update and rename build_wheel.yml to build_wheels.yml --- .github/workflows/build_wheel.yml | 25 ------------------------- .github/workflows/build_wheels.yml | 29 +++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 25 deletions(-) delete mode 100644 .github/workflows/build_wheel.yml create mode 100644 .github/workflows/build_wheels.yml diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml deleted file mode 100644 index 6013b4e..0000000 --- a/.github/workflows/build_wheel.yml +++ /dev/null @@ -1,25 +0,0 @@ -build_wheels: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - steps: - - uses: actions/checkout@v2 - - - uses: actions/setup-python@v2 - with: - python-version: 3.10 - - - name: Setup pip - run: | - python -m pip install --upgrade pip - python -m pip install cibuildwheel==1.6.4 - - - name: Build wheel - run: python -m cibuildwheel --output-dir dist/ - env: - CIBW_BUILD: cp36-* cp37-* cp38-* - - - uses: actions/upload-artifact@v2 - with: - path: ./dist/*.whl diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml new file mode 100644 index 0000000..ab7f234 --- /dev/null +++ b/.github/workflows/build_wheels.yml @@ -0,0 +1,29 @@ +name: build_wheels +run-name: ${{ github.actor }} is building wheels +on: [push] +jobs: + build_wheels: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + steps: + - uses: actions/checkout@v2 + + - uses: actions/setup-python@v2 + with: + python-version: 3.10 + + - name: Setup pip + run: | + python -m pip install --upgrade pip + python -m pip install cibuildwheel==1.6.4 + + - name: Build wheel + run: python -m cibuildwheel --output-dir dist/ + env: + CIBW_BUILD: cp36-* cp37-* cp38-* + + - uses: actions/upload-artifact@v2 + with: + path: ./dist/*.whl