Skip to content

Commit 00f8f4a

Browse files
committed
Create docGen.yml
Trying to see if it will add doxygen to automatically make doxy stuff when pushing
1 parent e707798 commit 00f8f4a

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/docGen.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# This workflow will build a .NET project
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3+
4+
name: Compile Web Application
5+
6+
on:
7+
push:
8+
branches: [doxyBranch]
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Deploy
17+
uses: peaceiris/actions-gh-pages@v4
18+
with:
19+
github_token: ${{ secrets.GITHUB_TOKEN }}
20+
publish_dir: ./public

0 commit comments

Comments
 (0)