chore(deps): bump webpack-dev-middleware from 7.0.0 to 7.1.1 #399
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 build | |
on: | |
push: | |
branches: | |
# 确保这是你正在使用的分支名称 | |
- blog | |
jobs: | |
LearnData-build: | |
runs-on: ubuntu-latest | |
env: | |
FTP_HOST: ${{ secrets.ftp_host_blog }} | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
with: | |
# 获取所有标记和分支的所有历史记录(updatetime 必须,否则每次都会变化) | |
fetch-depth: 0 | |
# 如果文档包含 Git 子模块,请取消注释下一行 | |
# submodules: true | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
run_install: true | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
# 复制读书笔记到静态页面路径,并构建页面 | |
- name: Build Docs | |
env: | |
NODE_OPTIONS: --max_old_space_size=8192 | |
run: |- | |
pnpm cpx "docs/reading/**" docs/.vuepress/public/reading | |
pnpm run docs:build | |
> docs/.vuepress/dist/.nojekyll | |
# 如果配置了 FTP 服务器密钥,才会执行本步骤,将页面静态文件同步到服务器 | |
- name: 📂 Sync files | |
if: env.FTP_HOST != '' | |
uses: SamKirkland/[email protected] | |
with: | |
local-dir: docs/.vuepress/dist/ | |
server: ${{ secrets.ftp_host_blog }} | |
username: ${{ secrets.ftp_username }} | |
password: ${{ secrets.ftp_password }} | |
port: ${{ secrets.ftp_port }} # 建议更改默认的 21 端口 | |
timeout: 600000 |