File tree Expand file tree Collapse file tree 1 file changed +25
-5
lines changed
Expand file tree Collapse file tree 1 file changed +25
-5
lines changed Original file line number Diff line number Diff line change @@ -3,18 +3,38 @@ name: Generate Word Doc
33on : push
44
55jobs :
6+ # convert_via_pandoc:
7+ # runs-on: ubuntu-22.04
8+ # steps:
9+ # - uses: actions/checkout@v4
10+ # - name: create file list
11+ # id: files_list
12+ # run: |
13+ # # this will also include all README.md files in order of folder name
14+ # echo "files=$(printf '"%s" ' */*.md)" > $GITHUB_OUTPUT
15+ # - name: list files
16+ # run: |
17+ # ls -aR
18+ # - uses: docker://pandoc/latex:2.9
19+ # with:
20+ # args: -s ${{ steps.files_list.outputs.files }} -f markdown -o=./output/cosmos-db-openai-python-dev-guide.docx
21+ # - uses: actions/upload-artifact@v3
22+ # with:
23+ # name: output
24+ # path: output
25+
626 convert_via_pandoc :
7- runs-on : ubuntu-22.04
27+ runs-on : ubuntu-20.04
28+ container :
29+ image : pandoc/core:2.9
30+
831 steps :
9- - uses : actions/checkout@v4
32+ - uses : actions/checkout@v2
1033 - name : create file list
1134 id : files_list
1235 run : |
1336 # this will also include all README.md files in order of folder name
1437 echo "files=$(printf '"%s" ' */*.md)" > $GITHUB_OUTPUT
15- - name : list files
16- run : |
17- ls -aR
1838 - uses : docker://pandoc/latex:2.9
1939 with :
2040 args : -s ${{ steps.files_list.outputs.files }} -f markdown -o=./output/cosmos-db-openai-python-dev-guide.docx
You can’t perform that action at this time.
0 commit comments