Fix #115: logging docs #74
Workflow file for this run
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: docs | |
on: | |
push: | |
branches: | |
- docs/* | |
tags: | |
- "v[0-9]+.*" | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source files | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 🐍 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
architecture: x64 | |
cache: 'pip' | |
cache-dependency-path: 'setup.cfg' | |
- name: Install Python dependencies | |
run: pip install .[doc] | |
- name: Configure Git user | |
run: | | |
git config --local user.name "github-actions[bot]" | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
- name: Deploy with mike (tag_ 🚀 | |
if: ${{ github.ref_type == 'tag' }} | |
run: mike deploy --push --rebase --update-aliases ${{ github.ref_name }} latest | |
- name: Deploy with mike (branch) 🚀 | |
if: ${{ github.ref_type == 'branch' }} | |
run: mike deploy --push --rebase docs-latest |