Skip to content

👷 #5 Setup Release Pipeline #1

👷 #5 Setup Release Pipeline

👷 #5 Setup Release Pipeline #1

Workflow file for this run

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

Check failure on line 11 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:3760e5360b6ecbb419f0d6fa8e9d01a46ada2187) : 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"