Skip to content

Commit 9077a3e

Browse files
committed
Update doc.yml
1 parent 6024704 commit 9077a3e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/doc.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,17 @@ jobs:
3030

3131
steps:
3232
- uses: actions/checkout@v2
33+
3334
- name: create file list
3435
id: files_list
3536
run: |
3637
# this will also include all README.md files in order of folder name
3738
echo "files=$(printf '"%s" ' */*.md)" > $GITHUB_OUTPUT
38-
- uses: docker://pandoc/latex:2.9
39-
with:
40-
args: -s ${{ steps.files_list.outputs.files }} -f markdown -o=./output/cosmos-db-openai-python-dev-guide.docx
39+
40+
- name: run pandoc
41+
run: |
42+
pandoc -s ${{ steps.files_list.outputs.files }} -f markdown -o=./output/cosmos-db-openai-python-dev-guide.docx
43+
4144
- uses: actions/upload-artifact@v3
4245
with:
4346
name: output

0 commit comments

Comments
 (0)