Hyprland/.github/workflows/man-update.yaml

31 lines
540 B
YAML
Raw Normal View History

2022-08-21 11:30:22 +03:00
name: Build man pages
on:
workflow_dispatch:
push:
paths:
- docs/**
2022-09-07 13:44:20 +03:00
branches:
- 'main'
2022-08-21 11:30:22 +03:00
jobs:
main:
name: Build man pages
runs-on: ubuntu-latest
steps:
- name: Install deps
run: sudo apt install pandoc
2023-09-10 21:51:13 +03:00
2022-08-21 11:30:22 +03:00
- name: Clone repository
uses: actions/checkout@v3
2023-09-10 21:51:13 +03:00
with:
token: ${{ secrets.PAT }}
2022-08-21 11:30:22 +03:00
- name: Build man pages
run: make man
2023-09-10 21:51:13 +03:00
2022-08-21 11:30:22 +03:00
- uses: stefanzweifel/git-auto-commit-action@v4
name: Commit
with:
commit_message: "[gha] build man pages"