Skip to content

Tzx/250512 3

Tzx/250512 3 #113

Workflow file for this run

name: Wheels
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
release:
types:
- published
env:
FORCE_COLOR: 3
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build_sdist:
name: Build SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Build SDist
run: pipx run build --sdist
- name: Check metadata
run: pipx run twine check dist/*
- uses: actions/upload-artifact@v4
with:
path: dist/*.tar.gz
upload_all:
name: Upload if release
needs: [build_wheels, build_sdist]

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

View workflow run for this annotation

GitHub Actions / Wheels

Invalid workflow file

The workflow is not valid. .github/workflows/wheels.yml (Line: 41, Col: 13): Job 'upload_all' depends on unknown job 'build_wheels'.
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist