Skip to content

更新

更新 #3

Workflow file for this run

name: Deploy to GitHub Pages
on: [push] # 触发事件
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install VuePress
run: npm install -g vuepress
- name: Build VuePress
run: npm run docs:build
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages # 部署分支
folder: .vuepress/dist # 部署文件夹