2020-09-14 17:15:06 +08:00
|
|
|
name: Deploy Docs
|
2020-09-14 16:55:43 +08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-07-05 11:24:26 +08:00
|
|
|
- master
|
2020-09-16 19:41:46 +08:00
|
|
|
paths:
|
2021-05-28 15:26:10 +08:00
|
|
|
- 'docs/**/**'
|
2020-09-14 16:55:43 +08:00
|
|
|
jobs:
|
|
|
|
build-and-deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2021-07-05 11:14:09 +08:00
|
|
|
uses: actions/checkout@v2.3.1
|
2020-09-14 16:55:43 +08:00
|
|
|
- name: Build and Deploy
|
2021-07-05 11:14:09 +08:00
|
|
|
uses: JamesIves/github-pages-deploy-action@4.1.1
|
2020-09-14 16:55:43 +08:00
|
|
|
env:
|
2021-05-28 15:26:10 +08:00
|
|
|
ACCESS_TOKEN: ${{ secrets.QLIN_GITEE_TOKEN }}
|
|
|
|
BRANCH: master
|
|
|
|
FOLDER: docs/.vuepress/dist
|
|
|
|
BUILD_SCRIPT: npm install && npm run docs:build
|