Skip to content

2.0.1

2.0.1 #16

Workflow file for this run

on:
repository_dispatch:
types:
- docs_publish
release:
types:
- released
name: Documentation
jobs:
build:
name: Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- run: make docs-build
- run: touch ./build/docs/.nojekyll
- if: success()
uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: gh-pages
build_dir: ./build/docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}