-
Notifications
You must be signed in to change notification settings - Fork 2
58 lines (48 loc) · 1.36 KB
/
main.yml
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
name: ci
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@v3
- name: download toolchain
run: ./ci/download-toolchain
- name: build docker image
run: docker build -f ci/Dockerfile -t builder:latest .
- name: build software assets
run: docker run -v $(pwd):/workspace -w /workspace builder:latest make clean all
- name: build docs
run: docker run -v $(pwd):/workspace -w /workspace builder:latest doxygen Doxyfile
- name: upload docs artifact
uses: actions/upload-artifact@v4
with:
name: docs
path: docs/
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: docs
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/download-artifact@v4
with:
name: docs
path: .
- uses: actions/configure-pages@v3
- uses: actions/upload-pages-artifact@v1
with:
path: ./html/
- id: deployment
uses: actions/deploy-pages@v2