We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6024704 commit 9077a3eCopy full SHA for 9077a3e
.github/workflows/doc.yml
@@ -30,14 +30,17 @@ jobs:
30
31
steps:
32
- uses: actions/checkout@v2
33
+
34
- name: create file list
35
id: files_list
36
run: |
37
# this will also include all README.md files in order of folder name
38
echo "files=$(printf '"%s" ' */*.md)" > $GITHUB_OUTPUT
- - 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
+ - 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
44
- uses: actions/upload-artifact@v3
45
with:
46
name: output
0 commit comments