mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 05:27:01 +01:00
Add compile manual github action
This commit is contained in:
parent
8029da6157
commit
efb14ea0a9
17
.github/workflows/compile-manual.yml
vendored
Normal file
17
.github/workflows/compile-manual.yml
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
name: Compile debian man
|
||||||
|
on:
|
||||||
|
- push
|
||||||
|
jobs:
|
||||||
|
compile-debian-man:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repo
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- 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@v6
|
||||||
|
with:
|
||||||
|
add: 'debian/cis-hardening.8'
|
||||||
|
message: 'Regenerate man pages (Github action)'
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in New Issue
Block a user