nonebot2/.github/workflows/website-deploy.yml

60 lines
1.7 KiB
YAML
Raw Normal View History

name: Build Upload Site
on:
push:
pull_request_target:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-02-21 02:52:37 +00:00
if: github.event_name == 'push'
- uses: actions/checkout@v2
if: github.event_name != 'push'
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Python Environment
uses: ./.github/actions/setup-python
2021-12-02 06:03:06 +00:00
- name: Setup Node Environment
uses: ./.github/actions/setup-node
- name: Install and build
run: |
poetry run python ./docs_build/autodoc.py
cp -r ./build/nonebot/* ./website/docs/api/
yarn prettier
yarn build
2021-02-10 03:38:56 +00:00
- name: Get Branch Name
2021-02-10 03:52:34 +00:00
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV
2021-02-10 03:38:56 +00:00
2021-02-10 05:53:41 +00:00
- name: Get Deploy Name
if: github.event_name == 'push'
2021-02-23 02:08:32 +00:00
run: |
echo "DEPLOY_NAME=${{ env.BRANCH_NAME }}" >> $GITHUB_ENV
echo "PRODUCTION=${{ env.BRANCH_NAME == 'master' }}" >> $GITHUB_ENV
2021-02-10 05:53:41 +00:00
- name: Get Deploy Name
if: github.event_name != 'push'
2021-02-23 02:08:32 +00:00
run: |
echo "DEPLOY_NAME=deploy-preview-${{ github.event.number }}" >> $GITHUB_ENV
echo "PRODUCTION=false" >> $GITHUB_ENV
2021-02-10 05:53:41 +00:00
2021-02-10 04:58:24 +00:00
- name: Deploy to Netlify
2021-12-20 02:08:28 +00:00
uses: nwtgck/actions-netlify@v1
with:
2021-12-01 19:17:10 +00:00
publish-dir: './website/build'
2021-02-23 02:08:32 +00:00
production-deploy: ${{ env.PRODUCTION }}
2021-02-10 04:58:24 +00:00
github-token: ${{ secrets.GITHUB_TOKEN }}
2021-02-21 02:52:37 +00:00
deploy-message: 'Deploy ${{ env.DEPLOY_NAME }}@${{ github.sha }}'
enable-commit-comment: false
2021-02-10 05:53:41 +00:00
alias: ${{ env.DEPLOY_NAME }}
2021-02-10 05:00:25 +00:00
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.SITE_ID }}