Skip to content

Create docs.yml

Create docs.yml #3

Workflow file for this run

name: Build documentation and deploy to GitHub Pages
on:
push:
branches: ['docs']
workflow_dispatch:
# Cancel previous run (see: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency)
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
uses: pmndrs/docs/.github/workflows/build.yml@app-router

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

View workflow run for this annotation

GitHub Actions / Build documentation and deploy to GitHub Pages

Invalid workflow file

The workflow is not valid. .github/workflows/docs.yml (Line: 14, Col: 11): Input home_redirect is required, but not provided while calling.
with:
mdx: './docs'
libname: 'React Postprocessing'
deploy:
needs: build
runs-on: ubuntu-latest
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4