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

Commit

Permalink
Re-apply PR with the new documentation framework.
Browse files Browse the repository at this point in the history
This reverts commit 4d657ac.
  • Loading branch information
brycelelbach committed Feb 10, 2022
1 parent 627dccb commit 3b6f623
Show file tree
Hide file tree
Showing 269 changed files with 5,198 additions and 3,298 deletions.
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/[email protected]
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

0 comments on commit 3b6f623

Please sign in to comment.