Generate documentation #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |