1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2026-01-14 22:13:14 +00:00

create release on every new version

This commit is contained in:
Ylian Saint-Hilaire
2022-07-18 20:49:07 -07:00
parent 00fda3333e
commit a885efc4cf
5 changed files with 157 additions and 0 deletions

24
.github/workflows/deploy-docs.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: Deploy Docs
on:
push:
branches:
- master
paths:
- docs/**
defaults:
run:
working-directory: docs
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install --upgrade pip
- run: pip install --upgrade setuptools wheel
- run: pip install mkdocs mkdocs-material pymdown-extensions
- run: mkdocs gh-deploy --force