Skip to content

Commit

Permalink
Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Kathund committed Oct 21, 2024
1 parent 61e2e3f commit 256806f
Show file tree
Hide file tree
Showing 6 changed files with 510 additions and 4 deletions.
79 changes: 79 additions & 0 deletions .github/workflows/UpdateDocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: 'Update Docs'
on:
push:
paths:
- src/**
branches:
- master
workflow_dispatch:

env:
NODE_VERSION: '20'

jobs:
pnpm:
name: Install dependencies (pnpm)
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v2

- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'

- name: Install node dependencies
run: pnpm install

UpdateDocs:
name: Update Documentation
needs: [pnpm]
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v2

- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'

- name: Install node dependencies
run: pnpm install

- name: Generate Documentation
run: pnpm docgen

- name: Move new documentation to temp directory
run: mv documentation/ tmp/

- name: Switch to documentation branch
run: |
git fetch --all
git checkout documentation
- name: Clear Old Documentation files
run: rm -rf assets/ classes/ functions/ interfaces/ modules/ types/ variables/ 404.html hierarchy.html index.html modules.html sitemap.xml .nojekyll

- name: Move new Documentation files into place
run: |
mv tmp/.nojekyll ./
mv tmp/* ./
rm -r tmp/
- name: Commit and push changes
run: |
git config --global user.name "Docs Updater[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "Update Documentation" || echo "No changes to commit"
git push origin documentation
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ oldreborn/
dist/
.eslintcache
coverage/
.github/coverageData.xml
.github/coverageData.xml
documentation/
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ oldreborn/
.git
.gitignore
coverage/
.github/coverageData.xml
.github/coverageData.xml
documentation/
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
],
"publisher": "Kathund",
"devDependencies": {
"@8hobbies/typedoc-plugin-404": "^3.0.0",
"@eslint/js": "^9.13.0",
"@j4cobi/eslint-plugin-sort-imports": "^1.0.2",
"@types/eslint": "^9.6.1",
Expand All @@ -61,6 +62,9 @@
"eslint-config-prettier": "^9.1.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"typedoc": "^0.26.10",
"typedoc-material-theme": "^1.1.0",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"vitest": "^2.1.3",
Expand Down
Loading

0 comments on commit 256806f

Please sign in to comment.