Skip to content

Add MQRemote and MQGammaLess to plugin quick-list #182

Add MQRemote and MQGammaLess to plugin quick-list

Add MQRemote and MQGammaLess to plugin quick-list #182

Workflow file for this run

name: mkdocs
on:
workflow_dispatch:
push:
branches:
- master
paths:
- "**.md"
- "**.css"
- "mkdocs.yml"
- "main.py"
- ".github/workflows/mkdocs_deploy.yml"
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
# Fixes an issue where a commit is pushed to the pages branch outside of this workflow
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v2
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Configure git as github-actions bot
run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Publish docs
run: mkdocs gh-deploy