Skip to content

Commit

Permalink
Fix All File
Browse files Browse the repository at this point in the history
  • Loading branch information
znc15 committed Jul 8, 2024
1 parent 88b46a4 commit 8c78e6b
Show file tree
Hide file tree
Showing 68 changed files with 1,846 additions and 8,921 deletions.
64 changes: 49 additions & 15 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,52 @@
name: Build and Deploy
on: [push]

name: 部署文档

on:
push:
branches:
- main

permissions:
contents: write

jobs:
build-and-deploy:
deploy-gh-pages:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- name: vuepress-deploy
uses: jenkey2011/vuepress-deploy@master
env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
TARGET_REPO: lms-work/wiki-docs
TARGET_BRANCH: master
BUILD_SCRIPT: yarn && yarn docs:build
BUILD_DIR: src/.vuepress/dist
COMMIT_MESSAGE: Auto deploy from Github Actions
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# 如果你文档需要 Git 子模块,取消注释下一行
# submodules: true

- name: 设置 pnpm
uses: pnpm/action-setup@v4
with:
version: 8


- name: 设置 Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: pnpm

- name: 安装依赖
run: |
corepack enable
pnpm install --frozen-lockfile
- name: 构建文档
env:
NODE_OPTIONS: --max_old_space_size=8192
run: |-
pnpm run docs:build
> src/.vuepress/dist/.nojekyll
- name: 部署文档
uses: JamesIves/github-pages-deploy-action@v4
with:
# 部署文档
branch: gh-pages
folder: src/.vuepress/dist
12 changes: 0 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,3 @@ node_modules/
src/.vuepress/.cache/
src/.vuepress/.temp/
src/.vuepress/dist/
'node_modules'
'.temp'
'.cache'
'node_modules'
'.temp'
'.cache'
# VuePress 默认临时文件目录
.vuepress/.temp
# VuePress 默认缓存目录
.vuepress/.cache
# VuePress 默认构建生成的静态文件目录
.vuepress/dist
23 changes: 8 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,19 @@
{
"name": "lmswiki",
"version": "1.0.0",
"name": "lms-wiki",
"version": "2.0.0",
"description": "A project of vuepress-theme-hope",
"license": "MIT",
"type": "module",
"scripts": {
"docs:build": "vuepress build src",
"docs:clean-dev": "vuepress dev src --clean-cache",
"docs:dev": "vuepress dev src",
"docs:update-package": "npx vp-update"
"docs:build": "vuepress-vite build src",
"docs:clean-dev": "vuepress-vite dev src --clean-cache",
"docs:dev": "vuepress-vite dev src",
"docs:update-package": "pnpm dlx vp-update"
},
"devDependencies": {
"@vuepress/bundler-vite": "2.0.0-rc.14",
"@vuepress/client": "2.0.0-rc.14",
"@vuepress/theme-default": "2.0.0-rc.14",
"@waline/client": "^3.0.0-alpha.1",
"twikoo": "^1.6.22",
"vue": "^3.3.4",
"vue": "^3.4.27",
"vuepress": "2.0.0-rc.14",
"vuepress-theme-hope": "2.0.0-beta.237"
},
"dependencies": {
"pnpm": "^8.10.4"
"vuepress-theme-hope": "2.0.0-rc.50"
}
}
Loading

0 comments on commit 8c78e6b

Please sign in to comment.