mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 21:47:02 +01:00
4a652a94c6
Bumps [EndBug/add-and-commit](https://github.com/EndBug/add-and-commit) from v6 to v7. - [Release notes](https://github.com/EndBug/add-and-commit/releases) - [Changelog](https://github.com/EndBug/add-and-commit/blob/master/CHANGELOG.md) - [Commits](https://github.com/EndBug/add-and-commit/compare/v6...b3c7c1e078a023d75fb0bd326e02962575ce0519) Signed-off-by: dependabot[bot] <support@github.com>
18 lines
538 B
YAML
18 lines
538 B
YAML
---
|
|
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@v7
|
|
with:
|
|
add: 'debian/cis-hardening.8'
|
|
message: 'Regenerate man pages (Github action)'
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|