Skip to content

Replace Graph_SaverToFile.cs to Back-end folder #35

Replace Graph_SaverToFile.cs to Back-end folder

Replace Graph_SaverToFile.cs to Back-end folder #35

Workflow file for this run

name: Deploy Doxygen Docs
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Build Project
run: dotnet build --configuration Release
- name: Install Doxygen and Graphviz
run: sudo apt-get update && sudo apt-get install -y doxygen graphviz
- name: Run Doxygen
run: doxygen Doxyfile
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./html