Skip to content

#5 Allowed checks.yaml #2

#5 Allowed checks.yaml

#5 Allowed checks.yaml #2

Workflow file for this run

---
name: Release
on:
workflow_call:
push:
tags:
- "*"
jobs:
lint:
uses: ./.github/workflows/checks.yaml

Check failure on line 13 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yaml" -> "./.github/workflows/checks.yaml" (source tag with sha:9be310c72efda1940396cd89ed2e9133b10be6d2) : workflow is not reusable as it is missing a `on.workflow_call` trigger
release:
needs:
- lint
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
with:
python-version: "3.11"
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: "3.11"
cache: true
- name: "Publish Package"
run: "make publish"