优化数组输入处理:支持中英文逗号作为分隔符,兼容空格情况 #5
This file contains hidden or 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: | |
branches: | |
- main | |
workflow_dispatch: # 允许手动触发 | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # 明确指定需要写入权限 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} # 确保不会同时运行多个相同的工作流程 | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' # 使用更新的Node.js版本 | |
cache: 'npm' | |
- name: Debug Environment | |
run: | | |
node --version | |
npm --version | |
ls -la | |
- name: Install dependencies | |
run: | | |
npm config set legacy-peer-deps true | |
npm install --no-fund --no-audit --prefer-offline | |
env: | |
CI: true | |
- name: Build | |
run: npm run build | |
env: | |
CI: false # 避免将警告视为错误 | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: build # React 默认的构建输出目录 | |
branch: gh-pages # 部署到的分支 | |
clean: true # 清理旧文件 | |
token: ${{ secrets.GITHUB_TOKEN }} # 使用GitHub自动生成的token |