Files
cpp-template/.gitea/workflows/build_docs.yml
Shrukan 6479d1d578
All checks were successful
Build Docs / build-docs (push) Successful in 5m4s
Build and Test Code / test (push) Successful in 4m56s
Build and Test Code / coverage (push) Successful in 4m50s
Build and Test Code / static_analysis (push) Successful in 4m7s
Build and Test Code / sanitize (push) Successful in 1m48s
ci: fix artifact action path
2025-07-06 19:24:21 -06:00

28 lines
571 B
YAML

name: Build Docs
run-name: ${{ gitea.ref }} Build
on:
push:
branches:
- main
jobs:
build-docs:
runs-on: garm-k8s
container: gitea.shrukanslab.xyz/shrukan/cpp-template/dev-environment:latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Configure
run: just configure
- name: Build docs
run: just docs
- name: Archive docs
uses: christopherhx/gitea-upload-artifact@v4
with:
name: docs
path: build/docs
retention-days: 5