Add table of attributes mapping, rename png, add notes #279
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Generate doc from markdown | |
| on: push | |
| jobs: | |
| generate_doc: | |
| timeout-minutes: 5 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: List files | |
| run: | | |
| ls -la | |
| mkdir output | |
| - uses: docker://pandoc/core:latest | |
| with: | |
| args: >- # allows you to break string into multiple lines | |
| --standalone | |
| --from markdown | |
| --output=mvr-spec.docx | |
| mvr-spec.md | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: mvr-spec | |
| path: mvr-spec.docx |