Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Documentación
on:
push:
tags:
- "*"
branches: [main, master]
jobs:
build:
name: Build and publish documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install Docs
run: |
sudo apt-get install doxygen graphviz
pip install jinja2 Pygments
- name: prepare
run: |
make prepare
- name: configure
run: |
cmake -H. -Bbuild -G "Unix Makefiles" -DCMAKE_BUILD_TYPE="Debug" -DIGNORELIBS:BOOL=ON
- name: building
run: |
cmake --build build --config Debug --target docs -j4
- name: Deploy to GitHub Pages
uses: Cecilapp/GitHub-Pages-deploy@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
build_dir: ./docs/html