release: v0.8.63 #778
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
# https://docs.github.com/actions | |
name: Deploy Docs | |
on: | |
workflow_dispatch: # 支持手动触发流水线 | |
push: | |
branches: | |
- main | |
paths: | |
- 'docs/**/**' | |
- 'package.json' | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 # https://github.com/marketplace/actions/checkout | |
- name: Setup Node | |
uses: actions/setup-node@v4 # https://github.com/marketplace/actions/setup-node-js-environment | |
with: | |
node-version: 20 | |
- name: Npm Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. | |
run: npm i -g pnpm && pnpm i && npm run docs:build | |
- name: Deploy to Server | |
uses: easingthemes/ssh-deploy@main # https://github.com/marketplace/actions/ssh-deploy | |
with: | |
# 本地.ssh文件下的私钥id_rsa,存在secrets的TOKEN中 | |
SSH_PRIVATE_KEY: ${{ secrets.HARRYWAN_PRIVATE_KEY }} | |
# 复制操作的参数。"-avzr --delete"意味部署时清空服务器目标目录下的文件 | |
# 源目录,相对于$GITHUB_WORKSPACE根目录的路径 | |
SOURCE: docs/.vitepress/dist/ | |
# 服务器域名 | |
REMOTE_HOST: ${{ secrets.TX_IP }} | |
# 腾讯云默认用户名为root | |
REMOTE_USER: root | |
# 目标目录 | |
TARGET: /data/web-packages/p/fes-design | |