Skip to content
Draft
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
21 changes: 21 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Doxygen Generation

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:

jobs:
generate-docs:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: DenverCoder1/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: docs
config_file: Doxyfile
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,4 @@ cmake-build-*
recordings/
/build-*
/toolchains/
docs/
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ add_executable(oopetris
src/random.hpp
src/recording.hpp
src/input_event.hpp
src/utils.hpp
src/utils.cpp
src/utils/utils.hpp
src/utils/utils.cpp
src/command_line_arguments.hpp
src/controls.hpp
src/mino_stack.cpp
Expand Down
Loading