mirror of
https://github.com/FiloSottile/age.git
synced 2026-01-09 13:23:07 +00:00
25 lines
585 B
YAML
25 lines
585 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
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
|