chore(deps): bump pymdown-extensions in /docs/build (#148) #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |