fix(docs): 更新 Milky API 文档链接,移除不必要的内容 #240
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: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| jobs: | |
| deploy-gh-pages: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| registry-url: https://registry.npmjs.org | |
| - name: Install | |
| run: npm install | |
| - name: Build | |
| run: | | |
| npm run build | |
| - name: deploy | |
| env: | |
| LLBot_GH_TOKEN: ${{ secrets.RELEASE_TOKEN }} | |
| run: | | |
| bash ./script/deploy.sh |