Skip to content

Commit

Permalink
modify site publishing to build templates before running doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
computablee committed Nov 27, 2023
1 parent b349701 commit 6fbab81
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/publish_site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x

- name: Build Templates
run: make build

- name: Install Doxygen
run: sudo apt-get install doxygen graphviz -y
shell: bash
Expand All @@ -28,4 +36,4 @@ jobs:
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
folder: docs/html
folder: docs/html

0 comments on commit 6fbab81

Please sign in to comment.