chore(config): nutui 的尺寸单位特殊处理 #78
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: 构建部署H5应用 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 拉取仓库代码 | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: 安装依赖 | |
run: | | |
npm install pnpm -g | |
pnpm i | |
pnpm build:h5 | |
- name: 部署应用 | |
uses: JamesIves/github-pages-deploy-action@releases/v3 | |
with: | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: dist |