mirror of
https://github.com/postyizhan/NitWikit.git
synced 2024-12-21 08:20:41 +08:00
33 lines
810 B
Plaintext
33 lines
810 B
Plaintext
|
name: Wiki Deploy
|
||
|
|
||
|
# 触发条件
|
||
|
on: [ workflow_dispatch, push, pull_request ]
|
||
|
|
||
|
# 设置权限
|
||
|
permissions:
|
||
|
contents: write
|
||
|
|
||
|
# 任务
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
# 拉取代码
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
# 启用缓存加速部署
|
||
|
- name: Cache node modules
|
||
|
uses: actions/cache@v2
|
||
|
with:
|
||
|
path: ~/.npm
|
||
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||
|
restore-keys: |
|
||
|
${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||
|
# 安装 Npm 并构建
|
||
|
- name: Install and Build
|
||
|
run: npm install && npm run build
|
||
|
# 部署
|
||
|
- name: Deploy
|
||
|
uses: JamesIves/github-pages-deploy-action@v4
|
||
|
with:
|
||
|
folder: build
|