Skip to content

Merge branch 'main' of https://github.com/rex-schilasky/rustecal #6

Merge branch 'main' of https://github.com/rex-schilasky/rustecal

Merge branch 'main' of https://github.com/rex-schilasky/rustecal #6

Workflow file for this run

name: Generate API Documentation
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
doc:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install mdBook
uses: taiki-e/install-action@v2
with:
tool: mdbook
- name: Build mdBook
run: mdbook build docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/book