Skip to content
This repository has been archived by the owner on Jun 14, 2022. It is now read-only.

Commit

Permalink
Added workflow for building wheels (#2)
Browse files Browse the repository at this point in the history
Added workflow for building wheels
  • Loading branch information
g-bauer authored Dec 2, 2021
1 parent a588a83 commit c2e6e2b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build Wheels
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Build Wheels
uses: messense/maturin-action@v1
with:
maturin-version: latest
manylinux: auto
command: build
args: --release --out dist --no-sdist -m build_wheel/Cargo.toml
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
name: dist
path: dist

0 comments on commit c2e6e2b

Please sign in to comment.