Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

New Doxybook/Jekyll-based GitHub Pages documentation infrastructure (take two) #1611

Merged
merged 5 commits into from
Feb 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/deploy-documentation-github-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Deploy Documentation GitHub Pages

on:
push:
branches:
- feature/new-docs

jobs:
deploy-documentation-github-pages:
runs-on: ubuntu-latest
container: gpuci/cccl:cuda11.5.1-devel-ubuntu20.04-gcc9
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Generate documentation markdown
run: ./docs/generate_markdown.bash --clean
- name: Deploy generated documentation markdown to gh-pages branch
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build_docs/github_pages
enable_jekyll: true
commit_message: "Deploy Documentation: ${{ github.event.head_commit.message }}"
6 changes: 3 additions & 3 deletions .github/workflows/mirror-main-branch-to-master-branch.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on:
push:
branches:
- "main"
- main

jobs:
mirror-main-branch-to-master-branch:
Expand All @@ -12,6 +12,6 @@ jobs:
id: mirror
uses: google/mirror-branch-action@v1.0
with:
source: "main"
dest: "master"
source: main
dest: master
github-token: ${{ secrets.GITHUB_TOKEN }}
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
*.log
.p4config
doc/html
discrete_voronoi.pgm
*build*/
.idea/
Loading