Documentation+Base: Remove old remainders of RAM disk support #351
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate man pages | |
on: | |
push: | |
paths: | |
- "Base/usr/share/man/**" | |
- "Meta/Websites/man.serenityos.org/**" | |
jobs: | |
convert_using_pandoc: | |
runs-on: ubuntu-22.04 | |
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: r-lib/actions/setup-pandoc@v2 | |
with: | |
pandoc-version: '2.13' | |
- name: Actually build website | |
run: ./Meta/build-manpages-website.sh | |
- name: Deploy to GitHub pages | |
uses: JamesIves/[email protected] | |
with: | |
git-config-name: BuggieBot | |
git-config-email: [email protected] | |
branch: master | |
repository-name: SerenityOS/manpages-website | |
token: ${{ secrets.BUGGIEBOT_TOKEN }} | |
folder: output |