-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (45 loc) · 1.11 KB
/
Copy pathdocumentation.yml
File metadata and controls
53 lines (45 loc) · 1.11 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
name: Documentation
on:
push:
tags:
- "*"
branches: [ main, master ]
jobs:
build:
name: Build and publish documentation
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install dependencies
run: |
sudo apt-get update
make dependency
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
aqtversion: '==3.1.*'
version: '6.7.1'
host: 'linux'
target: 'desktop'
arch: 'linux_gcc_64'
modules: 'qtconnectivity qthttpserver qtmultimedia qtnetworkauth qtremoteobjects qtscxml'
tools: 'tools_ninja'
- name: cleaning up
run: |
make clean
- name: building
run: |
make build-debug
- name: Documentation generation
run: |
make html
- name: Deploy to GitHub Pages
uses: Cecilapp/GitHub-Pages-deploy@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
email: 7osssam@protonmail.ch
build_dir: ./docs/doxygen/html