Skip to content

Commit 53d8934

Browse files
committed
rename @@_Introduction to "00_" & add gh pandoc action to generate word doc
1 parent 92d05e8 commit 53d8934

File tree

56 files changed

+21
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+21
-0
lines changed

.github/workflows/doc.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Generate Word Doc
2+
3+
on: push
4+
5+
jobs:
6+
convert_via_pandoc:
7+
runs-on: ubuntu-22.04
8+
steps:
9+
- uses: actions/checkout@v3
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+
- uses: docker://pandoc/latex:2.9
16+
with:
17+
args: --output=output/cosmos-db-openai-python-dev-guide.docx ${{ steps.files_list.outputs.files }}
18+
- uses: actions/upload-artifact@v3
19+
with:
20+
name: output
21+
path: output
File renamed without changes.

00_Azure_Overview/media/ISV-Tech-Builders-tools-white.png renamed to 01_Azure_Overview/media/ISV-Tech-Builders-tools-white.png

File renamed without changes.
File renamed without changes.

00_Azure_Overview/media/azure-management-tool-maturity.png renamed to 01_Azure_Overview/media/azure-management-tool-maturity.png

File renamed without changes.

00_Azure_Overview/media/azure-marketplace-search-results.png renamed to 01_Azure_Overview/media/azure-marketplace-search-results.png

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)