Skip to content

Add wheels.yml workflow for release to PyPI #2

Add wheels.yml workflow for release to PyPI

Add wheels.yml workflow for release to PyPI #2

Workflow file for this run

name: Build and upload to PyPI
on:
push:
pull_request:
release:
types:
- released
- prereleased
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build wheels
run: pip wheel . -w wheels
- uses: actions/upload-artifact@v3
with:
name: artifacts
path: ./dist/dask_glm*
list_artifacts:
name: List build artifacts
needs: [build_wheels, build_sdist]

Check failure on line 33 in .github/workflows/wheels.yml

View workflow run for this annotation

GitHub Actions / Build and upload to PyPI

Invalid workflow file

The workflow is not valid. .github/workflows/wheels.yml (Line: 33, Col: 27): Job 'list_artifacts' depends on unknown job 'build_sdist'. .github/workflows/wheels.yml (Line: 46, Col: 27): Job 'upload_pypi' depends on unknown job 'build_sdist'.
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: artifacts
path: dist
- name: test
run: |
ls
ls dist
upload_pypi:
needs: [build_wheels, build_sdist]
if: "startsWith(github.ref, 'refs/tags/')"
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: artifacts
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist
skip-existing: true