Skip to content

fix: Update 第2期(2025-01-03).md #688

fix: Update 第2期(2025-01-03).md

fix: Update 第2期(2025-01-03).md #688

Workflow file for this run

name: build
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'docs/**'
- 'mkdocs.yml'
- 'build.yml'
- 'docs/static/js/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: 3.x
cache: "pip"
- run: |
pip install pip -U
pip install -r requirements.txt
mkdocs build
mkdocs gh-deploy --clean
echo "build successful!"