Update antixray.md #126
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |