Skip to content

try to fix ci

try to fix ci #2

Workflow file for this run

name: Main
on:
push:
branches: [ "main" ]
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
permissions:
contents: read
actions: read
id-token: write
pages: write
security-events: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
uses: ./.github/workflows/checks.yaml
secrets: inherit
with:
sha: ${{ github.sha }}
build-wheels:
uses: ./.github/workflows/build-wheels.yaml
secrets: inherit
with:
sha: ${{ github.sha }}
build-docs:
uses: ./.github/workflows/build-docs.yaml
secrets: inherit
with:
sha: ${{ github.sha }}
codeql:
uses: ./.github/workflows/codeql.yaml
secrets: inherit
with:
sha: ${{ github.sha }}
release:
uses: ./.github/workflows/release.yaml

Check failure on line 38 in .github/workflows/main.yaml

View workflow run for this annotation

GitHub Actions / Main

Invalid workflow file

The workflow is not valid. .github/workflows/main.yaml (Line: 38, Col: 11): Input publish-wheels is required, but not provided while calling.
secrets: inherit
needs:
- build-docs
- build-wheels
- checks
- codeql
with:
sha: ${{ github.sha }}
publish-docs: true