Drop os matrix, all wheels are the same, fix github release upload #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build_package_wheels | |
on: | |
workflow_call: | |
jobs: | |
build_wheels: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Used to host build wheel | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Build | |
run: pip install .[build] | |
- name: Build Package | |
run: make build_package | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: ./dist/ |