Skip to content

Update Documentation #12

Update Documentation

Update Documentation #12

Workflow file for this run

name: Update Documentation
on:
workflow_dispatch:
push:
branches:
- master
jobs:
documentation:
name: Documentation
strategy:
matrix:
include:
- os: macos-13
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install Jazz
run: gem install jazzy
- name: Generate documentation
run: |
jazzy \
--min-acl public \
--no-hide-documentation-coverage \
--theme fullwidth \
--title Insights \
--module Insights \
--output ./docs \
--documentation=./*.md
- name: Publish on GitHub Pages
uses: ftnext/[email protected]
with:
build_dir: docs
github_token: ${{ secrets.GITHUB_TOKEN }}