From b6ed23a7a9efc454d9983b464fafbed0894dca69 Mon Sep 17 00:00:00 2001 From: Jacopin Eliott Date: Fri, 20 Oct 2023 23:54:03 +0900 Subject: [PATCH] [Update] Test Adding plantuml GitHub action Major: - Edited the documentation build workflow to generate the sequence diagrams before generating the doc with DocFX. Then, since the MarkDown file reference in adavance the file that will be generated, the image should appear in the file as planned. --- .github/workflows/doc.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index dd04666a..0ef96ad4 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -19,6 +19,15 @@ jobs: #run: choco install -y docfx run: dotnet tool install -g docfx + - name: plantuml + id: plantuml + uses: grassedge/generate-plantuml-action@v1.5 + with: + path: . + message: "Render PlantUML files" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Build run: docfx DocFX/docfx.json