winutil/.github/workflows/github-pages.yml

23 lines
521 B
YAML
Raw Normal View History

2024-07-14 20:44:52 -05:00
name: GitHub Pages Deploy
on:
2024-07-17 13:53:44 -05:00
release:
types: [published, prereleased]
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
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
2024-07-17 13:53:44 -05:00
- run: mkdocs gh-deploy --force