Skip to content

Commit

Permalink
ci: Fix workflow for release
Browse files Browse the repository at this point in the history
  • Loading branch information
A. Challande committed Sep 22, 2022
1 parent fd15884 commit 0d27fa9
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,26 @@ on:

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macOS-11]
name: Build wheel
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build wheels
uses: pypa/[email protected]
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: pip install wheel
- name: Build wheel
run: pip wheel -w wheels .
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
path: ./wheels/quokka*.whl

build_sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand Down

0 comments on commit 0d27fa9

Please sign in to comment.