Skip to content

fix: Update 第146期(2024-12-13).md #679

fix: Update 第146期(2024-12-13).md

fix: Update 第146期(2024-12-13).md #679

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!"