Release docs for 4.1 #179
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: mkdocs-release | |
on: | |
push: | |
branches: [branch-*\.*] | |
jobs: | |
publish-release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install ubuntu dependencies | |
run: sudo apt-get install -y libxml2-dev libxslt-dev | |
- name: install deps | |
run: pip3 install -r requirements-docs.txt | |
- name: setup git | |
run: | | |
git config --global user.name Mike | |
git config --global user.email [email protected] | |
# Put this back and increment version when cutting a new release branch | |
- name: mike deploy docs | |
run: mike deploy 4.1 latest -u --push |