Skip to content

Commit f16e8fc

Browse files
committed
update
1 parent 810dc90 commit f16e8fc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/GHPages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/setup-node@v4
1313
- name: Install mermaid-filter
1414
run: |
15-
npm i -g mermaid-filter
15+
npm i mermaid-filter
1616
- uses: docker://pandoc/latex:2.9
1717
with:
1818
args: |

.github/workflows/test-build-resources-with-pandoc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/setup-node@v4
1717
- name: Install mermaid-filter
1818
run: |
19-
npm i -g mermaid-filter
19+
npm i mermaid-filter
2020
- uses: docker://pandoc/latex:2.9
2121
with:
2222
args: sh build-resources-with-pandoc.sh

build-resources-with-pandoc.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ pandoc ./AWSインフラリソース命名規約.md --toc --reference-doc=${STYL
2626
# OpenAPISpecification
2727
cd ${ROOT_DIR}/documents/forOpenAPISpecification
2828

29-
pandoc ./OpenAPI_Specification_3.0.3.md -s --self-contained --number-sections --toc -t html5 -c ${CSS_PATH} --filter mermaid-filter -o ${RESOURCES_DIR}/OpenAPI_Specification_3.0.3.html
30-
pandoc ./OpenAPI_Specification_3.0.3.md --toc --reference-doc=${STYLE_DOCX_PATH} -s --filter mermaid-filter -o ${RESOURCES_DIR}/OpenAPI_Specification_3.0.3.docx
29+
pandoc ./OpenAPI_Specification_3.0.3.md -s --self-contained --number-sections --toc -t html5 -c ${CSS_PATH} --filter ./node_modules/mermaid-filter/index.js -o ${RESOURCES_DIR}/OpenAPI_Specification_3.0.3.html
30+
pandoc ./OpenAPI_Specification_3.0.3.md --toc --reference-doc=${STYLE_DOCX_PATH} -s --filter ./node_modules/mermaid-filter/index.js -o ${RESOURCES_DIR}/OpenAPI_Specification_3.0.3.docx
3131

3232
# Git
3333
cd ${ROOT_DIR}/documents/forGitBranch

0 commit comments

Comments
 (0)