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
|
2022-01-06 14:48:59 +08:00
|
|
|
pull_request_target:
|
2021-02-10 11:35:54 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
2022-02-16 14:17:33 +08:00
|
|
|
if: github.event_name == 'push'
|
2021-02-10 11:35:54 +08:00
|
|
|
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:
|
|
|
|
- uses: actions/checkout@v2
|
2021-02-21 10:52:37 +08:00
|
|
|
if: github.event_name == 'push'
|
|
|
|
|
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
|
|
|
|
uses: nwtgck/actions-netlify@v1
|
|
|
|
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 }}
|
|
|
|
|
|
|
|
preview:
|
|
|
|
if: github.event_name == 'pull_request_target'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
concurrency:
|
|
|
|
group: pull-request-preview-${{ github.event.number }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
|
|
|
|
- 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
|
2021-02-23 10:08:32 +08:00
|
|
|
|
2021-02-10 13:53:41 +08:00
|
|
|
- name: Get Deploy Name
|
|
|
|
if: github.event_name != 'push'
|
2021-02-23 10:08:32 +08:00
|
|
|
run: |
|
|
|
|
echo "DEPLOY_NAME=deploy-preview-${{ github.event.number }}" >> $GITHUB_ENV
|
2021-02-10 13:53:41 +08:00
|
|
|
|
2021-02-10 12:58:24 +08:00
|
|
|
- name: Deploy to Netlify
|
2021-12-20 10:08:28 +08:00
|
|
|
uses: nwtgck/actions-netlify@v1
|
2021-02-10 11:35:54 +08:00
|
|
|
with:
|
2022-01-15 21:27:43 +08:00
|
|
|
publish-dir: "./website/build"
|
2022-02-16 14:17:33 +08:00
|
|
|
production-deploy: false
|
2021-02-10 12:58:24 +08:00
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
2022-01-15 21:27:43 +08:00
|
|
|
deploy-message: "Deploy ${{ env.DEPLOY_NAME }}@${{ github.sha }}"
|
2021-02-12 13:38:48 +08:00
|
|
|
enable-commit-comment: false
|
2021-02-10 13:53:41 +08:00
|
|
|
alias: ${{ env.DEPLOY_NAME }}
|
2021-02-10 13:00:25 +08:00
|
|
|
env:
|
|
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
|
|
NETLIFY_SITE_ID: ${{ secrets.SITE_ID }}
|