Skip to content

chore(deps): bump pyparsing from 3.2.0 to 3.2.1 in /docs/build (#134) #29

chore(deps): bump pyparsing from 3.2.0 to 3.2.1 in /docs/build (#134)

chore(deps): bump pyparsing from 3.2.0 to 3.2.1 in /docs/build (#134) #29

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