Skip to content

Commit 0f01f44

Browse files
authored
Merge pull request #13 from TAServers/174-bspparser-rewrite
174 - Rewrite
2 parents d86a41b + bc7d98b commit 0f01f44

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+6699
-3163
lines changed

.github/workflows/doxygen.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Doxygen
2+
run-name: "Build and deploy documentation"
3+
on:
4+
push:
5+
branches: [ master ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
with:
14+
submodules: true
15+
16+
- name: Build documentation
17+
uses: mattnotmitt/[email protected]
18+
19+
- name: Upload artefact
20+
uses: actions/upload-pages-artifact@v3
21+
with:
22+
path: docs/html
23+
24+
deploy:
25+
needs: build
26+
27+
permissions:
28+
pages: write
29+
id-token: write
30+
31+
environment:
32+
name: github-pages
33+
url: ${{ steps.deployment.outputs.page_url }}
34+
35+
runs-on: ubuntu-latest
36+
steps:
37+
- name: Deploy to GitHub Pages
38+
uses: actions/deploy-pages@v4
39+
id: deployment

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,3 +367,5 @@ premakeout/
367367

368368
# idea user configs
369369
.idea/discord.xml
370+
371+
docs

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "doxygen-awesome-css"]
2+
path = doxygen-awesome-css
3+
url = https://github.com/jothepro/doxygen-awesome-css.git

0 commit comments

Comments
 (0)