Skip to content

Commit 3bd1345

Browse files
committed
update
1 parent 34d64c5 commit 3bd1345

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
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
- uses: docker://pandoc/latex:2.9
1414
with:
15-
args: build-resources-with-pandoc.sh
15+
args: sh build-resources-with-pandoc.sh
1616
- name: Install Packages
1717
run: |
1818
npm i -f

.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
- uses: docker://pandoc/latex:2.9
1818
with:
19-
args: build-resources-with-pandoc.sh
19+
args: sh build-resources-with-pandoc.sh
2020
- name: Archive resources
2121
uses: actions/upload-artifact@v4
2222
with:

build-resources-with-pandoc.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,14 @@ pandoc ./OpenAPI_Specification_2.0.md --toc --reference-doc=${STYLE_DOCX_PATH} -
3232
# Git
3333
cd ${ROOT_DIR}/documents/forGitBranch
3434

35-
pandoc ./git_branch_standards.md -s --self-contained --number-sections --toc -t html5 -c ../.${CSS_PATH} -o ${RESOURCES_DIR}/Gitブランチフロー規約.html
35+
pandoc ./git_branch_standards.md -s --self-contained --number-sections --toc -t html5 -c ${CSS_PATH} -o ${RESOURCES_DIR}/Gitブランチフロー規約.html
3636
pandoc ./git_branch_standards.md --toc --reference-doc=${STYLE_DOCX_PATH} -s -o ${RESOURCES_DIR}/Gitブランチフロー規約.docx
3737

38+
# Markdown
39+
cd ${ROOT_DIR}/documents/forMarkdown
40+
41+
pandoc ./markdown_design_document.md -s --self-contained --number-sections --toc -t html5 -c ${CSS_PATH} -o ${RESOURCES_DIR}/Markdown設計ドキュメント規約.html
42+
pandoc ./markdown_design_document.md --toc --reference-doc=${STYLE_DOCX_PATH} -s -o ${RESOURCES_DIR}/Markdown設計ドキュメント規約.docx
3843

3944
# Slack
4045
cd ${ROOT_DIR}/documents/forSlack

0 commit comments

Comments
 (0)