Skip to content

Bump actions/deploy-pages from 2.0.1 to 2.0.2 #403

Bump actions/deploy-pages from 2.0.1 to 2.0.2

Bump actions/deploy-pages from 2.0.1 to 2.0.2 #403

Workflow file for this run

name: Convert markdown to Word (NetworkSettings)
on:
push:
branches:
["main"]
pull_request:
branches:
["main"]
env:
CELLPHONE: ${{ secrets.CELLPHONE }}
BIRTHDATE: ${{ secrets.BIRTHDATE }}
jobs:
convert_via_pandoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
#node-version: 'node16'
ref: ${{ github.event.push.head.ref }}
- uses: docker://pandoc/core:2.19.2
with:
args: >- # allows you to break string into multiple lines
--standalone
--output=NetworkSettings.docx
NetworkSettings.md
- name: ⤴ Commit updated version
run: |
git pull 'https://${{secrets.GITHUB_TOKEN}}@github.com/RalphHightower/EOL-RalphHightower.git'
git config remote.origin.url 'https://${{secrets.GITHUB_TOKEN}}@github.com/RalphHightower/EOL-RalphHightower.git'
git config user.name RalphHightower
git config user.email ralph.hightower@gmail.com
git add .
git commit -am "Update Document for NetworkSettings"
git push