-
Notifications
You must be signed in to change notification settings - Fork 2
63 lines (51 loc) · 1.63 KB
/
docs_deploy.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
name: Docs Deploy
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20 # Updated to Node.js 20
# TNO Terminology Design tools
- name: Install terminology tools globally
run: npm install -g @tno-terminology-design/trrt @tno-terminology-design/hrgt @tno-terminology-design/mrgt @tno-terminology-design/mrg-import
- name: Run terminology tools
run: |
cd docs
mrg-import -c terminology-config.yaml
mrgt -c terminology-config.yaml
hrgt -f -c terminology-config.yaml
trrt -f -c terminology-config.yaml
- name: Commit MRGs to repository
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Update MRGs
file_pattern: 'docs/glossaries/mrg.*.yaml'
- name: Update Browserslist DB # Added step to update browserslist database
run: npx update-browserslist-db@latest --yes
- name: Install Dependencies
run: npm install
- name: Build and Deploy
run: |
npx docusaurus build --out-dir build
touch build/.nojekyll
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.PEACEIRIS_TOKEN }}
publish_dir: ./build