Skip to content

test1

test1 #5

Workflow file for this run

name: build doc
on:
push:
branches:
- doc-test
jobs:
putblic-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: true
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Configure git
run: |
git config --global user.email "[email protected]"
git config --global user.name "ci-bot"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs-material mike
- name: Build
run: mike deploy 1.0.6 latest --update-aliases --push