mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
26 lines
423 B
YAML
26 lines
423 B
YAML
|
|
name: build-man
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'docs/**/*'
|
|
pull_request:
|
|
paths:
|
|
- 'docs/**/*'
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.head_ref || github.run_id }}-build-man
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build-man:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Checks that manual generation works
|
|
run: make build-man
|