Files
cpp-template/.gitea/workflows/build_docs.yml
Shrukan 78bf8c9236
Some checks failed
Build Docs / build-docs (push) Failing after 3m1s
Build and Test Code / test (push) Successful in 3m15s
Build and Test Code / static_analysis (push) Successful in 3m17s
Build and Test Code / coverage (push) Successful in 3m21s
Build and Test Code / sanitize (push) Successful in 3m24s
ci: fix artifact and image runner
2025-07-06 19:19:13 -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@v3
with:
name: docs
path: build/docs
retention-days: 5