fix:修复将. 和 ?. 统一替换为?.没有排除数字中的.的情况 #1283
Workflow file for this run
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 CI | |
# on: | |
# push: | |
# branches: | |
# - master | |
# jobs: | |
# build-and-deploy: | |
# runs-on: ubuntu-latest | |
# name: deploy steps | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: install | |
# run: yarn install | |
# - name: build | |
# run: yarn doc | |
# - name: Deploy Action | |
# uses: peaceiris/actions-gh-pages@v3 | |
# with: | |
# deploy_key: ${{ secrets.ACTIONS_DEPLOY_TOKEN }} | |
# publish_dir: ./docs-dist | |
# force_orphan: true | |