Skip to content

Commit

Permalink
Merge branch 'doc'
Browse files Browse the repository at this point in the history
  • Loading branch information
soblin committed Feb 18, 2022
2 parents 13f3d0a + 464e2e0 commit 9043b18
Show file tree
Hide file tree
Showing 7 changed files with 2,727 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: doc

on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ doc ]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: checkout
uses: actions/checkout@v2
with:
submodules: true

- name: doxygen
uses: mattnotmitt/[email protected]
with:
working-directory: 'doc/'
doxyfile-path: './Doxyfile'

- name: deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: doc/html
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "doc/doxygen-awesome-css"]
path = doc/doxygen-awesome-css
url = https://github.com/jothepro/doxygen-awesome-css.git
Loading

0 comments on commit 9043b18

Please sign in to comment.