Some checks failed
Build Docs / build-docs (push) Has been cancelled
Build and Test Code / test (push) Failing after 1s
Build and Test Code / coverage (push) Failing after 2s
Build and Test Code / static_analysis (push) Failing after 1s
Build and Test Code / sanitize (push) Failing after 1s
28 lines
559 B
YAML
28 lines
559 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/sl-devs/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: actions/upload-artifact@v3
|
|
with:
|
|
name: docs
|
|
path: build/docs
|
|
retention-days: 5
|