🎨 格式化配置文件 #124
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: Build Docs | |
on: | |
push: | |
branches: [vitepress] | |
jobs: | |
build_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '>=20' | |
cache: 'pnpm' | |
- name: Build docs | |
run: | | |
pnpm install | |
pnpm build | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: page_dist | |
path: docs/.vitepress/dist | |
upload2netlify: | |
needs: [build_docs] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: page_dist | |
path: dist | |
- name: Deploy to Netlify Production | |
uses: netlify/actions/cli@master | |
with: | |
args: deploy --dir=dist --prod | |
env: | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} |