Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

Commit

Permalink
imp - Don't use Docker for docgen.yml
Browse files Browse the repository at this point in the history
---

This improves the performance of generating documentation.

---

Type: imp
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Mar 9, 2024
1 parent 798ec6a commit cd8df80
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/docgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,18 @@ jobs:
name: "Make API Reference"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Fetching the KS source
- uses: "nunit/docfx-action@master"
name: Generating documentation
- uses: actions/checkout@v4
name: Fetching the source
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
args: DocGen/docfx.json
dotnet-version: '8.0.x'
- name: Setup DocFX
run: dotnet tool install --global docfx --version 2.75.2
- name: Solution Compilation
run: dotnet build --configuration Release
- name: Generating documentation
run: docfx DocGen/docfx.json
- name: Saving changes to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
Expand Down

0 comments on commit cd8df80

Please sign in to comment.