Skip to content

Commit

Permalink
docs: 添加在线文档的 workflow 构建流,修复一些问题
Browse files Browse the repository at this point in the history
  • Loading branch information
amtoaer committed Jul 5, 2024
1 parent e2b6574 commit 90f2a1d
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 1 deletion.
39 changes: 39 additions & 0 deletions .github/workflows/doc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build Docs

on:
push:
paths:
- 'docs/**'

jobs:
doc:
if: ${{ github.ref == 'refs/heads/main' }}
name: Build documentation
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('docs/bun.lockb') }}
restore-keys: |
${{ runner.os }}-bun-
- name: Build documentation
run: bun run docs:build
- name: Deploy Github Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/.vitepress/dist
force_orphan: true
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ hero:
text: GitHub
link: https://github.com/amtoaer/bili-sync
image:
src: /assets/icon.png
src: /logo.png
alt: bili-sync

features:
Expand Down
File renamed without changes

0 comments on commit 90f2a1d

Please sign in to comment.