revamp of workflows by Marterich

This commit is contained in:
Chris Titus
2024-08-07 15:24:26 -05:00
parent 5b993adba9
commit 7841f4bbce
8 changed files with 97 additions and 16304 deletions

25
.github/workflows/github-pages.yaml vendored Normal file
View File

@ -0,0 +1,25 @@
name: GitHub Pages Deploy
on:
release:
types: [published, prereleased]
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v4
with:
key: ${{ github.ref }}
path: .cache
- run: pip install mkdocs-material
- run: pip install pillow cairosvg
- run: pip install mkdocs-awesome-pages-plugin
- run: pip install mkdocs-git-revision-date-localized-plugin
- run: pip install mkdocs-minify-plugin
- run: mkdocs gh-deploy --force