-
Notifications
You must be signed in to change notification settings - Fork 26
81 lines (66 loc) · 1.99 KB
/
UpdateDocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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 docs
- 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