Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: .vitepress/dist
path: dist

# Deployment job
deploy:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ jobs:

- name: Check if site was built
run: |
if [ ! -d ".vitepress/dist" ]; then
echo "Error: .vitepress/dist directory not created"
if [ ! -d "dist" ]; then
echo "Error: dist directory not created"
exit 1
fi
echo "Site built successfully"
ls -la .vitepress/dist/
ls -la dist/

- name: Link Checker
uses: lycheeverse/lychee-action@v2
Expand All @@ -53,8 +53,8 @@ jobs:
--verbose
--no-progress
--config lychee.toml
--root-dir ${{ github.workspace }}/.vitepress/dist
.vitepress/dist/**/*.html
--root-dir ${{ github.workspace }}/dist
dist/**/*.html
fail: true
output: link-check-results.md
format: markdown
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ node_modules/
dist/
.vitepress/dist/
.vitepress/cache/
.astro/

# Ruby / Jekyll (legacy)
_site/
Expand Down Expand Up @@ -32,3 +33,6 @@ artifacts/

# Claude Code memory (local only)
.claude/

# Local AI assistant session exports (not for source control)
kimi-export-session_*.md
181 changes: 0 additions & 181 deletions .vitepress/config.ts

This file was deleted.

29 changes: 0 additions & 29 deletions .vitepress/plugins/asciidoc.ts

This file was deleted.

38 changes: 0 additions & 38 deletions .vitepress/posts.data.ts

This file was deleted.

Loading
Loading