feat(左侧输入模块): 样式调整 #14
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: GitHub Actions Build and Deploy # 大标题 | |
on: | |
push: | |
branches: | |
- master # 监听哪个分支的哪个动作 | |
permissions: | |
contents: write # 设置权限,可写,也可以不用配置,v4版本新增的 | |
jobs: | |
build-and-deploy: # 其中一个任务的名称,ID | |
runs-on: ubuntu-latest # 这个任务运行所需的环境 | |
steps: | |
- name: Checkout # 第一步:获取源码 | |
uses: actions/checkout@v3 # 使用的工具 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install and Build # 第二步:下载依赖和构建 | |
run: | | |
npm install -g yarn | |
yarn install | |
npm run build | |
- name: Deploy # 第三步:部署 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: dist # 部署的目录 | |
branch: deploy # 部署到哪个分支 | |