-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (41 loc) · 1.25 KB
/
doxygen.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
name: Doxygen
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Apt Update
run: sudo apt-get update
- name: Apt Install
run: sudo apt-get install doxygen --yes --quiet
- name: Create documentation
run: doxygen Doxyfile
- name: Clone website
run: git clone -b gh-pages https://github.com/Kode/Kinc.git Kinc-pages
- name: Remove old documentation
run: rm -r Kinc-pages/api
- name: Copy new documentation
run: cp -R Docs/html Kinc-pages/api
- name: Set name
run: git config --global user.name "Robbot"
- name: Set email
run: git config --global user.email "robbot2019@robdangero.us"
- name: Add documentation
run: git -C Kinc-pages add .
- name: Commit documentation
id: commit
continue-on-error: true
run: git -C Kinc-pages commit -m "Update documentation to $GITHUB_SHA."
- name: Push documentation
if: steps.commit.outcome == 'success'
continue-on-error: true
run: git -C Kinc-pages push https://Kode-Robbot:$ROBBOT_PASS@github.com/Kode/Kinc.git gh-pages
env:
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }}