Skip to content

Don't rerun tests on main #39

Don't rerun tests on main

Don't rerun tests on main #39

Workflow file for this run

##======================================================================================================================
## KUMI - Compact C++20 Tuple Toolbox
## Copyright : KUMI Project Contributors
## SPDX-License-Identifier: BSL-1.0
##======================================================================================================================
name: KUMI Documentation Generation
on:
push:
branches:
- main
jobs:
generate-doc:
runs-on: ubuntu-latest
container:
image: ghcr.io/jfalcou/compilers:v8
strategy:
fail-fast: false
steps:
- name: Fetch current branch
uses: actions/[email protected]
- name: Prepare KUMI
run: |
mkdir build && cd build
cmake .. -G Ninja -DKUMI_BUILD_TEST=OFF -DKUMI_BUILD_DOCUMENTATION=ON
- name: Generate Doxygen
run: |
cd build
ninja kumi-doxygen
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build/doc