-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (38 loc) · 1.18 KB
/
docsygen.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
name: Docs
on: [push]
jobs:
build-and-deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
path: dict
# Mermaid processing starts here:
- name: get list of files
id: getfile
run: |
echo "::set-output name=files::$(find dict/docs -name '*.md' | xargs)"
- name: print list of files for debugging
run: |
echo ${{ steps.getfile.outputs.files }}
# The actual Mermaid compilation
- name: compile mermaid
uses: divvun/compile-mermaid-markdown-action@main
with:
files: ${{ steps.getfile.outputs.files }}
output: 'dict/docs/mermaid-svgs'
env:
HIDE_CODEBLOCKS: 1
# The next one must be declared, with an empty value, for paths to work for us:
ABSOLUTE_IMAGE_LINKS:
OUTPUT_FILE_TYPE: "svg"
- name: list generated svg fils
run: |
cd dict && ls -l docs/mermaid-svgs
# Mermaid processing ends here
- name: deploy gh pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: dict/docs/
enable_jekyll: true