Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed Dec 24, 2024
1 parent 810dc90 commit f16e8fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/GHPages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/setup-node@v4
- name: Install mermaid-filter
run: |
npm i -g mermaid-filter
npm i mermaid-filter
- uses: docker://pandoc/latex:2.9
with:
args: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-build-resources-with-pandoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/setup-node@v4
- name: Install mermaid-filter
run: |
npm i -g mermaid-filter
npm i mermaid-filter
- uses: docker://pandoc/latex:2.9
with:
args: sh build-resources-with-pandoc.sh
Expand Down
4 changes: 2 additions & 2 deletions build-resources-with-pandoc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ pandoc ./AWSインフラリソース命名規約.md --toc --reference-doc=${STYL
# OpenAPISpecification
cd ${ROOT_DIR}/documents/forOpenAPISpecification

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
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
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
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

# Git
cd ${ROOT_DIR}/documents/forGitBranch
Expand Down

0 comments on commit f16e8fc

Please sign in to comment.