diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 56db801d..7b111d26 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -16,9 +16,16 @@ jobs: - name: 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: yarn && yarn docs:build - - name: Build and Deploy - uses: JamesIves/github-pages-deploy-action@4.1.1 - with: - branch: master # The branch the action should deploy to. - folder: docs/.vuepress/dist # The folder the action should deploy. - token: ${{ secrets.QLIN_GITEE_TOKEN }} + - name: Deploy + uses: easingthemes/ssh-deploy@main + env: + # 本地.ssh文件下的私钥id_rsa,存在secrets的TOKEN中 + SSH_PRIVATE_KEY: ${{ secrets.HARRYWAN_PRIVATE_KEY }} + # 源目录,相对于$GITHUB_WORKSPACE根目录的路径 + SOURCE: docs/.vuepress/dist/ + # 服务器域名 + REMOTE_HOST: ${{ secrets.TX_IP }} + # 腾讯云默认用户名为root + REMOTE_USER: root + # 目标目录 + TARGET: /data/web-packages/p/fesjs diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index d7da60b4..9fd25f44 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -3,11 +3,11 @@ import type { DefaultThemeOptions } from '@vuepress/theme-default' import { navbar, sidebar } from './configs' const config: UserConfig = { - base: '/fesjs/', + base: '/', // evergreen: process.env.NODE_ENV !== 'production', - head: [['link', { rel: 'manifest', href: '/fesjs/manifest.webmanifest' }], ['link', { rel: 'icon', href: `/fesjs/logo.png` }]], + head: [['link', { rel: 'manifest', href: '/manifest.webmanifest' }], ['link', { rel: 'icon', href: `/logo.png` }]], // site-level locales config locales: {