diff options
author | Fernando Ayats <[email protected]> | 2022-08-21 10:30:22 +0200 |
---|---|---|
committer | Fernando Ayats <[email protected]> | 2022-08-21 10:33:45 +0200 |
commit | aaba11b7a217a1c871a09d5d6f78b44fd9c5489d (patch) | |
tree | 051dbcd72d43ea517f9bdb043e4c1e8ba0532e5e /.github | |
parent | 9513031da30861b6ab593625aebe88b811758427 (diff) | |
download | Hyprland-aaba11b7a217a1c871a09d5d6f78b44fd9c5489d.tar.gz Hyprland-aaba11b7a217a1c871a09d5d6f78b44fd9c5489d.zip |
gha: build man pages
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/man-update.yaml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/man-update.yaml b/.github/workflows/man-update.yaml new file mode 100644 index 00000000..3ef5fc35 --- /dev/null +++ b/.github/workflows/man-update.yaml @@ -0,0 +1,26 @@ +name: Build man pages + +on: + workflow_dispatch: + push: + paths: + - docs/** + +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" |