2022-02-17 16:30:01 +08:00
|
|
|
name: Site Deploy(Preview)
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request_target:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
preview:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
concurrency:
|
|
|
|
group: pull-request-preview-${{ github.event.number }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
steps:
|
2023-09-05 12:00:44 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-02-17 16:30:01 +08:00
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
2023-08-05 14:01:53 +08:00
|
|
|
fetch-depth: 0
|
2022-02-17 16:30:01 +08:00
|
|
|
|
|
|
|
- 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: Get Deploy Name
|
|
|
|
run: |
|
|
|
|
echo "DEPLOY_NAME=deploy-preview-${{ github.event.number }}" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Deploy to Netlify
|
2022-12-09 12:19:22 +08:00
|
|
|
uses: nwtgck/actions-netlify@v2
|
2022-02-17 16:30:01 +08:00
|
|
|
with:
|
|
|
|
publish-dir: "./website/build"
|
|
|
|
production-deploy: false
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
deploy-message: "Deploy ${{ env.DEPLOY_NAME }}@${{ github.sha }}"
|
|
|
|
enable-commit-comment: false
|
|
|
|
alias: ${{ env.DEPLOY_NAME }}
|
|
|
|
env:
|
|
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
|
|
NETLIFY_SITE_ID: ${{ secrets.SITE_ID }}
|