mirror of
https://github.com/nonebot/nonebot2.git
synced 2026-06-19 11:02:28 +00:00
9b760a489d
Bumps the actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
43 lines
973 B
YAML
43 lines
973 B
YAML
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@v7
|
|
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@v7
|
|
with:
|
|
name: website-preview
|
|
path: |
|
|
./website/build
|
|
./pr-number
|
|
retention-days: 1
|