2022-02-07 14:12:08 +08:00
|
|
|
name: Site Deploy
|
2021-02-10 11:35:54 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-01-28 14:02:27 +08:00
|
|
|
branches:
|
|
|
|
- master
|
2021-02-10 11:35:54 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
|
|
|
runs-on: ubuntu-latest
|
2022-02-16 14:17:33 +08:00
|
|
|
concurrency:
|
|
|
|
group: website-deploy-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
2021-02-10 11:35:54 +08:00
|
|
|
|
|
|
|
steps:
|
2023-09-05 12:00:44 +08:00
|
|
|
- uses: actions/checkout@v4
|
2023-08-05 14:01:53 +08:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-02-21 10:52:37 +08:00
|
|
|
|
2022-01-13 16:41:01 +08:00
|
|
|
- name: Setup Python Environment
|
|
|
|
uses: ./.github/actions/setup-python
|
2021-12-02 14:03:06 +08:00
|
|
|
|
2022-01-13 16:41:01 +08:00
|
|
|
- name: Setup Node Environment
|
|
|
|
uses: ./.github/actions/setup-node
|
2021-02-10 11:35:54 +08:00
|
|
|
|
2022-02-14 21:01:39 +08:00
|
|
|
- name: Build API Doc
|
|
|
|
uses: ./.github/actions/build-api-doc
|
|
|
|
|
|
|
|
- name: Build Doc
|
|
|
|
run: yarn build
|
2021-02-10 11:35:54 +08:00
|
|
|
|
2021-02-10 11:38:56 +08:00
|
|
|
- name: Get Branch Name
|
2021-02-10 11:52:34 +08:00
|
|
|
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV
|
2021-02-10 11:38:56 +08:00
|
|
|
|
2022-02-16 14:17:33 +08:00
|
|
|
- name: Deploy to Netlify
|
2024-03-11 13:56:57 +08:00
|
|
|
uses: nwtgck/actions-netlify@v3
|
2022-02-16 14:17:33 +08:00
|
|
|
with:
|
|
|
|
publish-dir: "./website/build"
|
|
|
|
production-deploy: true
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
deploy-message: "Deploy ${{ env.BRANCH_NAME }}@${{ github.sha }}"
|
|
|
|
enable-commit-comment: false
|
|
|
|
alias: ${{ env.BRANCH_NAME }}
|
|
|
|
env:
|
|
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
|
|
NETLIFY_SITE_ID: ${{ secrets.SITE_ID }}
|