Skip to content

Generate documentation #29

Generate documentation

Generate documentation #29

Workflow file for this run

name: generate-doc
run-name: Generate documentation
on:
[push, workflow_dispatch]
jobs:
generate-doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Nim
uses: jiro4989/setup-nim-action@v1
with:
nim-version: stable
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install nimitheme
run: nimble install https://github.com/neroist/nimitheme -y
- name: Generate html documentation
run: nimble docs
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v3
with:
build_dir: docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}