feat: 更新官网 #12
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 and Deploy | |
on: # 监听 main 分支上的 push 事件 | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest # 构建环境使用 ubuntu | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- name: Install and Build # 下载依赖 打包项目 | |
run: | | |
npm install | |
npm run build | |
- name: Deploy # 将打包内容发布到 github page | |
uses: JamesIves/[email protected] # 使用别人写好的 actions | |
with: # 自定义环境变量 | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: ./.vitepress/dist | |
REPOSITORY_NAME: formily/formily.github.io # 这是我的 github page 地址 |