Skip to content

Docs

Docs #1

Workflow file for this run

name: Docs
on:
workflow_dispatch:
workflow_run:
workflows: [Release]
types:
- completed
env:
VOLTA_FEATURE_PNPM: 1
jobs:
deploy-docs:
steps:

Check failure on line 14 in .github/workflows/deploy-docs.yml

View workflow run for this annotation

GitHub Actions / Docs

Invalid workflow file

The workflow is not valid. .github/workflows/deploy-docs.yml (Line: 14, Col: 5): Required property is missing: runs-on
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: volta-cli/action@d253558a6e356722728a10e9a469190de21a83ef # v4
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3
with:
path: "**/node_modules"
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: install dependencies
run: pnpm install
- name: generate docs
run: pnpm run --filter docs generate-and-move
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./packages/docs/gh-pages