1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2024-11-18 13:55:36 -05:00

docs: publish man page to picom.app

This commit is contained in:
Yuxuan Shui 2024-07-30 17:51:10 +01:00
parent c29e1a4c3d
commit 32b7c17aee
No known key found for this signature in database
GPG key ID: D3A4405BE6CC17F4
3 changed files with 1290 additions and 1 deletions

53
.github/workflows/page.yml vendored Normal file
View file

@ -0,0 +1,53 @@
name: GitHub Pages
on:
push:
pull_request:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: false
fetch-depth: 0
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Install asciidoctor
run: sudo apt install -y asciidoctor
- name: Build
run: |
asciidoctor -a doctype=article -a stylesheet=../assets/next.css -b html man/picom.1.adoc -D _site
asciidoctor -a doctype=article -a stylesheet=../assets/next.css -b html man/picom-inspect.1.adoc -D _site
asciidoctor -a doctype=article -a stylesheet=../assets/next.css -b html man/picom-trans.1.adoc -D _site
cp _site/picom.1.html _site/index.html
- name: Upload
uses: actions/upload-pages-artifact@v3
deploy:
if: github.ref == 'refs/heads/next'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

1234
assets/next.css Normal file

File diff suppressed because it is too large Load diff

View file

@ -4,7 +4,9 @@ Yuxuan Shui
:mansource: picom :mansource: picom
:manversion: {picom-version} :manversion: {picom-version}
:manmanual: User Commands :manmanual: User Commands
:source-highlighter: rouge :source-highlighter: highlight.js
:highlightjs-languages: glsl
:toc: right
NAME NAME
---- ----