Skip to content

cd : start of continuous deployment #1

cd : start of continuous deployment

cd : start of continuous deployment #1

Workflow file for this run

name: distribute
on:

Check failure on line 3 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 3
workflow_dispatch:
release:
types:
- published
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@v4
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/[email protected]
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl