Github CI

pull/1/head
Swissky 2023-02-08 15:05:52 +01:00
parent dd33271353
commit 423bbf28b6
1 changed files with 24 additions and 0 deletions

24
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: ci
on:
push:
branches:
- master
- main
# At minute 0 past every 6th hour
schedule:
- cron: "0 */6 * * *"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: pip install mkdocs-git-revision-date-localized-plugin
- run: pip install mkdocs-git-committers-plugin
- run: mkdocs gh-deploy --force