Skip to content

Commit

Permalink
docs: test
Browse files Browse the repository at this point in the history
  • Loading branch information
yshui committed Jul 30, 2024
1 parent 267211c commit 166dc17
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/page.yml
Original file line number Diff line number Diff line change
@@ -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-22.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 -b html man/picom.1.adoc -D _site
asciidoctor -a doctype=article -b html man/picom-inspect.1.adoc -D _site
asciidoctor -a doctype=article -b html man/picom-trans.1.adoc -D _site
cp _site/picom.1.html _site/index.html
- name: Upload
uses: actions/upload-pages-artifact@v1

deploy:
if: github.ref == 'refs/heads/page_test'
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@v1

1 change: 1 addition & 0 deletions man/picom.1.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Yuxuan Shui
:manversion: {picom-version}
:manmanual: User Commands
:source-highlighter: rouge
:toc: right

NAME
----
Expand Down

0 comments on commit 166dc17

Please sign in to comment.