Files
cpp-template/.gitea/workflows/build_docs.yml
T
jsmith212 e9ec980368
Build and Test Code / coverage (push) Successful in 2m0s
Build and Test Code / static_analysis (push) Successful in 2m1s
Build Docs / build-docs (push) Successful in 5s
Build and Test Code / test (push) Successful in 1m58s
Build and Test Code / sanitize (push) Successful in 2m9s
Point CI at ubuntu-latest runners
2026-07-05 00:41:26 -06:00

28 lines
576 B
YAML

name: Build Docs
run-name: ${{ gitea.ref }} Build
on:
push:
branches:
- main
jobs:
build-docs:
runs-on: ubuntu-latest
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