doc: add age(1) and age-keygen(1) man pages

Closes #131
This commit is contained in:
Filippo Valsorda
2021-05-25 20:36:23 +02:00
committed by Filippo Valsorda
parent fb293ef526
commit e58a8859b9
9 changed files with 340 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
on:
push:
paths:
- '**.ronn'
name: Generate man pages
jobs:
ronn:
runs-on: ubuntu-latest
name: Ronn
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run ronn
uses: ./.github/workflows/ronn
id: ronn
- name: Commit and push if changed
run: |-
git config user.name "GitHub Actions"
git config user.email "actions@users.noreply.github.com"
git add -A
git commit -m "doc: regenerate groff and html man pages" || exit 0
git push