This repository was archived by the owner on Mar 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 756
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-apply PR with the new documentation framework.
This reverts commit 4d657ac.
- Loading branch information
1 parent
627dccb
commit 3b6f623
Showing
269 changed files
with
5,198 additions
and
3,298 deletions.
There are no files selected for viewing
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
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 }}" |
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
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: | ||
|
@@ -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 }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
*.log | ||
.p4config | ||
doc/html | ||
discrete_voronoi.pgm | ||
*build*/ | ||
.idea/ |
Oops, something went wrong.