Docs: 修复插件编写准备文档中的文本错误 #3115
Workflow file for this run
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: Site Deploy (Preview CI) | |
| on: | |
| pull_request: | |
| jobs: | |
| preview-ci: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: pull-request-preview-${{ github.event.number }} | |
| cancel-in-progress: true | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - name: Setup Python Environment | |
| uses: ./.github/actions/setup-python | |
| - name: Setup Node Environment | |
| uses: ./.github/actions/setup-node | |
| - name: Build API Doc | |
| uses: ./.github/actions/build-api-doc | |
| - name: Build Doc | |
| run: yarn build | |
| - name: Export Context | |
| run: | | |
| echo "${{ github.event.pull_request.number }}" > ./pr-number | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: website-preview | |
| path: | | |
| ./website/build | |
| ./pr-number | |
| retention-days: 1 |