Skip to content

Commit

Permalink
Merge pull request #85 from miggi92/feat/vitepress
Browse files Browse the repository at this point in the history
feat: vitepress
  • Loading branch information
miggi92 authored Apr 24, 2024
2 parents 3463ddd + 1b3c13e commit 11387d2
Show file tree
Hide file tree
Showing 88 changed files with 2,169 additions and 35,453 deletions.
8 changes: 0 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,3 @@ updates:
labels:
- "npm"
- "dependencies"
# Maintain dependencies for pip
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
labels:
- "pip"
- "dependencies"
71 changes: 54 additions & 17 deletions .github/workflows/deploy_doc.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,64 @@
name: Publish
# Sample workflow for building and deploying a VitePress site to GitHub Pages
#
name: Deploy VitePress site to Pages

on:
workflow_dispatch:
# Runs on pushes targeting the `main` branch. Change this to `master` if you're
# using the `master` branch as the default branch.
push:
branches:
- main
- master
paths:
- 'README.md'
- 'overrides/**'
- 'docs/**'
- 'mkdocs.yml'
- 'requirements.txt'
branches: [master]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: pages
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Not needed if lastUpdated is not enabled
- uses: pnpm/action-setup@v3 # Uncomment this if you're using pnpm
# - uses: oven-sh/setup-bun@v1 # Uncomment this if you're using Bun
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm # or pnpm / yarn
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Install dependencies
run: pnpm install # or pnpm install / yarn install / bun install
- name: Build with VitePress
run: pnpm docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/.vitepress/dist

# Deployment job
deploy:
uses: ObsidianPublisher/actions/.github/workflows/deploy.yml@main
with:
GENERATE_GRAPH: true
secrets:
GH_PAT: ${{ secrets.GITHUB_TOKEN }}
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
12 changes: 0 additions & 12 deletions .github/workflows/update_doc_template.yml

This file was deleted.

12 changes: 2 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
# Node artifact files
node_modules/
dist/
package-lock.json

# Compiled Java class files
*.class
Expand Down Expand Up @@ -49,12 +48,5 @@ Thumbs.db
*.mov
*.wmv

# exclude workspace cache
docs/.obsidian/workspace*

# Add below lines to exclude OS settings and caches
docs/.trash/
docs/.DS_Store

# exclude generated files by mkdoc
# docs/assets/graph.html
# vitepress
docs/.vitepress/cache
6 changes: 0 additions & 6 deletions docs/.obsidian/app.json

This file was deleted.

4 changes: 0 additions & 4 deletions docs/.obsidian/appearance.json

This file was deleted.

4 changes: 0 additions & 4 deletions docs/.obsidian/community-plugins.json

This file was deleted.

30 changes: 0 additions & 30 deletions docs/.obsidian/core-plugins-migration.json

This file was deleted.

21 changes: 0 additions & 21 deletions docs/.obsidian/core-plugins.json

This file was deleted.

22 changes: 0 additions & 22 deletions docs/.obsidian/graph.json

This file was deleted.

1 change: 0 additions & 1 deletion docs/.obsidian/hotkeys.json

This file was deleted.

Loading

0 comments on commit 11387d2

Please sign in to comment.