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

45 lines
1.1 KiB
YAML
Raw Normal View History

2022-02-07 06:12:08 +00:00
name: Site Deploy
on:
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
concurrency:
group: website-deploy-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
2021-02-21 02:52:37 +00:00
- 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: Build API Doc
uses: ./.github/actions/build-api-doc
- name: Build Doc
run: 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
- 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 }}