aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/man-update.yaml
blob: a42a6fe4983c1abb26778e5e9715002fd169b8db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Build man pages

on:
  workflow_dispatch:
  push:
    paths:
      - docs/**
    branches:
      - 'main'

jobs:
  main:
    name: Build man pages
    runs-on: ubuntu-latest
    steps:
    - name: Install deps
      run: sudo apt install pandoc
    - name: Clone repository
      uses: actions/checkout@v3
      # Not needed
      # with:
      #   submodules: recursive
    - name: Build man pages
      run: make man
    - uses: stefanzweifel/git-auto-commit-action@v4
      name: Commit
      with:
        commit_message: "[gha] build man pages"