Merge branch 'fix/term-h-macos' #37
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: Build manpage | |
on: push | |
jobs: | |
render: | |
name: Build manpage from pandoc markdown source | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install pandoc | |
run: sudo apt-get install pandoc | |
- name: Checkout imgcat | |
uses: actions/checkout@v4 | |
- name: Build man page | |
run: make -B docs/imgcat.1 | |
- name: Commit it back if it has changed | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "chore(docs): build man page" | |
file_pattern: "docs/imgcat.1" |