Skip to content

chore: release v1.0.0-0 #18

chore: release v1.0.0-0

chore: release v1.0.0-0 #18

Workflow file for this run

name: docs
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: technote-space/get-diff-action@v4
with:
PATTERNS: |
+(docs|docs-vuepress|example)/**/*
+(docs|docs-vuepress|example)/.*/**/*
- uses: actions/setup-node@v1
with:
node-version: '16'
- uses: pnpm/action-setup@v2
with:
version: 8
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
# vuepress生成最终文档
- name: generate docs file
if: env.GIT_DIFF
run: |
pnpm run docs:prod
# 使用 https://github.com/appleboy/scp-action 进行部署,注意 strip_components 用于控制层级
- name: Deploy to self-host server
if: env.GIT_DIFF
uses: appleboy/scp-action@master
with:
host: ${{ secrets.DOCS_SERVER_HOST }}
username: ${{ secrets.DOCS_SERVER_USER }}
key: ${{ secrets.DOCS_SERVER_KEY }}
command_timeout: "20m"
source: "./docs/.vuepress/dist/"
strip_components: 4
target: "${{ secrets.DOCS_SERVER_DIR }}"