8000 Merge pull request #486 from tomlin7/dependabot/pip/mkdocs-material-9.5.50 · tomlin7/biscuit@a3a2fac · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge pull request #486 from tomlin7/dependabot/pip/mkdocs-material-9… #349

Merge pull request #486 from tomlin7/dependabot/pip/mkdocs-material-9…

Merge pull request #486 from tomlin7/dependabot/pip/mkdocs-material-9… #349

Workflow file for this run

name: Docs
on:
push:
branches:
- master
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name Biscuit
git config user.email billydevbusiness@gmail.com
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install mkdocs-material mkdocstrings-python
- run: pip install -e .
- run: mkdocs gh-deploy --force
0