Allow multiple exception users to be defined for 99.5.2.4_ssh_keys_fr… #404
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: Compile debian man | |
on: | |
- push | |
jobs: | |
compile-debian-man: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Produce debian man | |
run: 'docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` pandoc/latex:2.6 MANUAL.md -s -t man > debian/cis-hardening.8' | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
add: 'debian/cis-hardening.8' | |
message: 'Regenerate man pages (Github action)' | |
token: ${{ secrets.GITHUB_TOKEN }} |