fix: picker 增加 fullyStop 属性 #35
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: 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 | |
if: env.GIT_DIFF | |
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 }}" |