2021-05-04 16:12:13 +00:00
|
|
|
name: Generate man pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- "Base/usr/share/man/**"
|
2021-05-04 19:11:21 +00:00
|
|
|
- "Meta/Websites/man.serenityos.org/**"
|
2021-05-04 16:12:13 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
convert_using_pandoc:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: r-lib/actions/setup-pandoc@v1
|
|
|
|
with:
|
|
|
|
pandoc-version: '2.13'
|
2021-10-20 19:35:46 +00:00
|
|
|
- name: Actually build website
|
|
|
|
run: ./Meta/build-manpages-website.sh
|
2021-06-05 15:03:22 +00:00
|
|
|
- name: Deploy to GitHub pages
|
2021-05-04 16:12:13 +00:00
|
|
|
uses: JamesIves/github-pages-deploy-action@4.1.1
|
|
|
|
with:
|
|
|
|
git-config-name: BuggieBot
|
|
|
|
git-config-email: buggiebot@serenityos.org
|
|
|
|
branch: master
|
|
|
|
repository-name: SerenityOS/manpages-website
|
|
|
|
token: ${{ secrets.BUGGIEBOT }}
|
|
|
|
folder: output
|