-
Notifications
You must be signed in to change notification settings - Fork 3
93 lines (75 loc) · 2.19 KB
/
Copy pathdocs.yml
File metadata and controls
93 lines (75 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: Documentation (Manual)
on:
workflow_dispatch:
inputs:
deploy:
description: 'Deploy to GitHub Pages'
required: false
default: true
type: boolean
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: false
env:
VULKAN_SDK_VERSION: '1.3.290.0'
jobs:
build-docs:
name: Build Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y doxygen graphviz ninja-build
- name: Setup Vulkan SDK
uses: jakoch/install-vulkan-sdk-action@v1.0.5
with:
vulkan_version: ${{ env.VULKAN_SDK_VERSION }}
install_runtime: true
cache: true
optional_components: com.lunarg.vulkan.vma
- name: Setup CMake
uses: lukka/get-cmake@latest
- name: Configure CMake
run: cmake --preset linux-gcc-docs
- name: Build Documentation
run: cmake --build --preset linux-gcc-docs
- name: Upload Documentation Artifact
uses: actions/upload-artifact@v4
with:
name: documentation
path: out/build/linux-gcc-docs/docs/html/
retention-days: 7
deploy:
name: Deploy to GitHub Pages
if: github.event.inputs.deploy == 'true'
needs: build-docs
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Download Documentation
uses: actions/download-artifact@v4
with:
name: documentation
path: ./docs
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4