Skip to content

chore(deps): update actions/checkout digest to b4ffde6 #84

chore(deps): update actions/checkout digest to b4ffde6

chore(deps): update actions/checkout digest to b4ffde6 #84

Workflow file for this run

---
name: Publish docs via GitHub Pages
on: # yamllint disable-line rule:truthy
workflow_dispatch:
push:
branches: ["main"]
paths:
- ".github/workflows/publish-docs.yaml"
- "mkdocs.yaml"
- "docs/**"
jobs:
publish-docs:
runs-on: ubuntu-latest
if: github.event.pull_request.head.repo.fork == false
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4
with:
python-version: 3.x
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4
with:
python-version: 3.x
- run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- run: |
pip install \
mkdocs>=1.1 \
mkdocs-macros-plugin >=0.5 \
mkdocs-material >=1.0 \
mkdocs-minify-plugin>=0.3 \
mkdocs-redirects>=1.0
- run: mkdocs gh-deploy --config-file ./mkdocs.yaml --force