Skip to content

fix: stop treating ZeroPlugins users as bots, as it's false positive #64

fix: stop treating ZeroPlugins users as bots, as it's false positive

fix: stop treating ZeroPlugins users as bots, as it's false positive #64

Workflow file for this run

name: docs
on:
push:
branches: [master, docs]
jobs:
docs-job:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip ci')"
env: { NODE_OPTIONS: '--max-old-space-size=3200' }
steps:
- { uses: actions/checkout@v4, with: { persist-credentials: false } }
- { uses: actions/setup-node@v4, with: { node-version: 'lts/*', cache: 'yarn' } }
- { name: yarn, run: yarn --frozen-lockfile }
- name: docs-build
run: yarn docs-build
- name: publish docs to github pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/.vitepress/dist
force_orphan: true
commit_message: 'deploy docs [skip ci]'
# publish_branch: gh-pages