Skip to content

fix docs

fix docs #3

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
jobs:
docs:
uses: pmndrs/docs/.github/workflows/build.yml@v2
with:
mdx: 'docs'
libname: 'timeline'
icon: '→'
home_redirect: '/getting-started/0-introduction'
github: 'https://github.com/pmndrs/timeline'
discord: 'https://discord.gg/ZZjjNvJ'
deploy-docs:
needs: docs
runs-on: ubuntu-latest
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