Update static.yml #6
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: Deploy to GitHub Pages | |
on: [push] # 触发事件 | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: corepack enable | |
run: corepack enable | |
- name: Install | |
run: npm install | |
- name: Build VuePress | |
run: npm run docs:build | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # 部署分支 | |
folder: .vuepress/dist # 部署文件夹 |