Skip to content

Merge pull request #12 from RappyLabyAddons/development #1

Merge pull request #12 from RappyLabyAddons/development

Merge pull request #12 from RappyLabyAddons/development #1

Workflow file for this run

name: Publish docs
on:
push:
branches:
- master
paths:
- docs/**
- mkdocs.yml
- requirements.txt
- .github/workflows/docs.yml
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: pip install -r requirements.txt
- name: Deploy docs
run: mkdocs gh-deploy --force