Skip to content

cd : distribute fix

cd : distribute fix #7

Workflow file for this run

name: distribute
on:
workflow_dispatch:
release:
types:
- published
jobs:
make_sdist:
name: Make sdist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build SDist
run: pipx run build --sdist
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
make_wheel:
name: Wheel on linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pypa/cibuildwheel@v2.16.2
- name: build wheel
run: |

Check failure on line 37 in .github/workflows/distribute.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/distribute.yml

Invalid workflow file

You have an error in your yaml syntax on line 37
pip wheel -w DEST_DIR .
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
path: dist/*.whl