Skip to content

Commit

Permalink
Documentation (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaurens committed Mar 23, 2024
1 parent 7f5a4cb commit d1c20fc
Show file tree
Hide file tree
Showing 23 changed files with 4,476 additions and 805 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/doxygen-gh-pages-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Doxygen GitHub Pages Deploy Action (main)

on:
push:
branches:
- 2024
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: DenverCoder1/[email protected]
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages-main
folder: documentation/html
config_file: documentation/Doxyfile
target_folder: documentation/2024
40 changes: 40 additions & 0 deletions .github/workflows/main-documentation.NOyml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# This is a basic workflow to help you get started with Actions

name: Doxygen Action main

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ main ]

jobs:
build:
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
- run: echo "event= ${{ github.event_name }}"
- run: echo "os= ${{ runner.os }}"
- run: echo "repository= ${{ github.repository }}"
- run: echo "branch= ${{ github.ref }}"
- name: Check out repository code
uses: actions/checkout@v4
- name: Doxygen Action
uses: mattnotmitt/[email protected]
with:
working-directory: '.'
doxyfile-path: 'documentation/Doxyfile'
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
# If you're changing the branch from main,
# also change the `main` in `refs/heads/main`
# below accordingly.
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
59 changes: 32 additions & 27 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,37 +34,42 @@ DerivedData/*
build
meson/build

documentation
!document/DoxyFile
!document/Readme.md

.vscode

synctex test files/1/big/1.synctex
synctex test files/1/big/1.pdf

synctex standalone/test_engine/**/*-blx.bib
synctex standalone/test_engine/**/*.1"
synctex standalone/test_engine/**/*.acn
synctex standalone/test_engine/**/*.acr
synctex standalone/test_engine/**/*.alg
synctex standalone/test_engine/**/*.aux
synctex standalone/test_engine/**/*.bbl
synctex standalone/test_engine/**/*.blg
synctex standalone/test_engine/**/*.end
synctex standalone/test_engine/**/*.fdb_latexmk
synctex standalone/test_engine/**/*.glg
synctex standalone/test_engine/**/*.glo
synctex standalone/test_engine/**/*.gls
synctex standalone/test_engine/**/*.idx
synctex standalone/test_engine/**/*.ind
synctex standalone/test_engine/**/*.ilg
synctex standalone/test_engine/**/*.ist
synctex standalone/test_engine/**/*.lof
synctex standalone/test_engine/**/*.log
synctex standalone/test_engine/**/*.lot
synctex standalone/test_engine/**/*.out
synctex standalone/test_engine/**/*.pdf
synctex standalone/test_engine/**/*.run.xml
synctex standalone/test_engine/**/*.sind
synctex standalone/test_engine/**/*.synctex
synctex standalone/test_engine/**/*.synctex.gz
synctex standalone/test_engine/**/*.toc
synctex standalone/test_*/**/*-blx.bib
synctex standalone/test_*/**/*.1"
synctex standalone/test_*/**/*.acn
synctex standalone/test_*/**/*.acr
synctex standalone/test_*/**/*.alg
synctex standalone/test_*/**/*.aux
synctex standalone/test_*/**/*.bbl
synctex standalone/test_*/**/*.blg
synctex standalone/test_*/**/*.end
synctex standalone/test_*/**/*.fdb_latexmk
synctex standalone/test_*/**/*.glg
synctex standalone/test_*/**/*.glo
synctex standalone/test_*/**/*.gls
synctex standalone/test_*/**/*.idx
synctex standalone/test_*/**/*.ind
synctex standalone/test_*/**/*.ilg
synctex standalone/test_*/**/*.ist
synctex standalone/test_*/**/*.lof
synctex standalone/test_*/**/*.log
synctex standalone/test_*/**/*.lot
synctex standalone/test_*/**/*.out
synctex standalone/test_*/**/*.pdf
synctex standalone/test_*/**/*.run.xml
synctex standalone/test_*/**/*.sind
synctex standalone/test_*/**/*.synctex
synctex standalone/test_*/**/*.synctex.gz
synctex standalone/test_*/**/*.toc

test standalone/**/lua_modules/lib/lua
test standalone/**/lua_modules/lib/luarocks/rocks-5.3/luafilesystem
Expand Down
Loading

0 comments on commit d1c20fc

Please sign in to comment.