Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Use workflow to deploy MkDocs documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed Feb 19, 2020
1 parent a2f0047 commit ba5ecb4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/deploy-docs.yml
@@ -0,0 +1,19 @@
name: Deploy Documentation

on:
push:
branches:
- master

jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v2

- name: Deploy docs
uses: mhausenblas/mkdocs-deploy-gh-pages@1.11
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ba5ecb4

Please sign in to comment.