Skip to content

chore(deps): bump mkdocs-material from 9.5.49 to 9.6.7 in /docs/build… #36

chore(deps): bump mkdocs-material from 9.5.49 to 9.6.7 in /docs/build…

chore(deps): bump mkdocs-material from 9.5.49 to 9.6.7 in /docs/build… #36

Workflow file for this run

name: Deploy the nightly documentation
on:
push:
paths:
- "docs/**"
- mkdocs.yml
branches:
- nightly
jobs:
deploy:
name: Deploy the nightly documentation
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
ref: nightly
fetch-depth: 0
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: |
pip install -r docs/build/requirements.txt
rm -rf docs/build
- name: set Git config
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
- name: Deploy the nightly documents
run: mike deploy --push nightly