Skip to content

Commit

Permalink
try to fix icon issue and add project number
Browse files Browse the repository at this point in the history
  • Loading branch information
Happyrobot33 committed Dec 12, 2024
1 parent e7189eb commit d46df32
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ jobs:
with:
files: docs

#modify doxyfile to include tag version
- name: edit DoxyFile
run: sed -i -e 's/PROJECT_NUMBER =/PROJECT_NUMBER = ${{ matrix.release-tag }}/g' ./docs/Doxygen/DoxygenConfig

#Generate the doxygen documentation
- name: Generate C# Documentation
uses: mattnotmitt/doxygen-action@v1.9.5
Expand All @@ -74,7 +78,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.release-tag }}
path: './docs/Doxygen'
path: './docs'

FinalWebBuild:
needs: [InitialSetup, DocMatrix]
Expand Down Expand Up @@ -106,7 +110,7 @@ jobs:
run: |
for tag in ${{ join(fromJSON(needs.InitialSetup.outputs.releaseTags), ' ') }}
do
echo " * [$tag]($tag/html/index.html \":ignore title\")" >> ./docs/_sidebar.md
echo " * [$tag]($tag/Doxygen/html/index.html \":ignore title\")" >> ./docs/_sidebar.md
done
#Copy docs into the website
Expand Down

0 comments on commit d46df32

Please sign in to comment.