update links #20
This file contains 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: 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 [email protected] | |
git add . | |
git commit -am "update word" | |
git push |