Files
eol-dr/.github/workflows/convert-and-commit.yml
2026-01-31 23:35:51 -06:00

28 lines
694 B
YAML

name: Convert markdown to Word
on:
workflow_dispatch:
# 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 user.name keith
git config user.email keith@keithsolomon.net
git add .
git commit -am "update word"
git push