Skip to content

Commit

Permalink
Add a workflow for the manpage generation
Browse files Browse the repository at this point in the history
This workflow installs ronn prior to generating the manpages.
  • Loading branch information
yegorich committed Sep 13, 2023
1 parent f0594cc commit 8c58db6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/freight-man-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: freight-man-pages
on: [push, pull_request]
jobs:
generate-manpages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install prerequisites
run: >-
sudo apt-get update
sudo apt-get install -y
ronn
- name: Generate manpages
run: make man

0 comments on commit 8c58db6

Please sign in to comment.