Skip to content

Release

Release #5

Workflow file for this run

name: Release
on:
workflow_dispatch:
jobs:
# Build Python package
build:
uses: ewoks-kit/.github/.github/workflows/python-build.yml@main
# Run tests
tests:
needs: build
uses: ewoks-kit/.github/.github/workflows/python-tests.yml@main
# Run linter / checks
checks:
uses: ewoks-kit/.github/.github/workflows/python-check.yml@main
# Build documentation
docs:
needs: build
uses: ewoks-kit/.github/.github/workflows/python-docs.yml@main
# Publish package
publish:
uses: ewoks-kit/.github/.github/workflows/python-publish.yml@main

Check failure on line 27 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yml" -> "ewoks-kit/.github/.github/workflows/python-publish.yml@main" (source branch with sha:1e615508e59b3c197ce46e1612b7c2d7aa909857) : workflow is not reusable as it is missing a `on.workflow_call` trigger
needs:
- tests
- checks
- docs