Skip to content

Merge pull request #379 from cmusphinx/dependabot/github_actions/pypa… #343

Merge pull request #379 from cmusphinx/dependabot/github_actions/pypa…

Merge pull request #379 from cmusphinx/dependabot/github_actions/pypa… #343

Workflow file for this run

name: Build
on:
push:
branches:
- master
workflow_dispatch:
jobs:
make_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build SDist
run: pipx run build --sdist
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.4
- name: Upload
uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl