Skip to content

build_wiki

build_wiki #139

Workflow file for this run

name: build_wiki
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
schedule:
- cron: '0 15 * * FRI'
jobs:
build_wiki:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: python automate.py
- run: mkdocs gh-deploy --force