Initial commit
Some checks failed
Convert markdown to Word / convert_via_pandoc (push) Failing after 22s
Convert markdown to Word / temp_conversion_via_pandoc (push) Failing after 25s

This commit is contained in:
Keith Solomon
2026-01-30 15:30:35 -06:00
commit 225cabfa5e
7 changed files with 387 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
name: Convert markdown to Word
on:
push:
branches:
- main
jobs:
convert_via_pandoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.push.head.ref }}
- uses: docker://pandoc/core:2.9
with:
args: >- # allows you to break string into multiple lines
--standalone
--output=checklist.docx
checklist.md
- name: ⤴ Commit updated version
run: |
git config remote.origin.url 'https://${{secrets.GITHUB_TOKEN}}@github.com/potatoqualitee/froopyland-dr.git'
git config user.name potatoqualitee
git config user.email clemaire@gmail.com
git add .
git commit -am "update word"
git push

20
.github/workflows/test-convert.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: Convert markdown to Word
on: push
jobs:
temp_conversion_via_pandoc:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: docker://pandoc/core:2.9
with:
args: >- # allows you to break string into multiple lines
--standalone
--output=checklist.docx
checklist.md
- uses: actions/upload-artifact@master
with:
name: checklist.docx
path: checklist.docx