From 39638fbd6e3cce293f638a22a83f070ca9cd1393 Mon Sep 17 00:00:00 2001 From: Oskar Gewalli Date: Wed, 22 Feb 2023 19:10:02 +0200 Subject: [PATCH] Upgrade fsdoc to fix missing documentation toc (#536) --- .config/dotnet-tools.json | 2 +- .github/workflows/fable.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index bd8365bb7..3ba3de754 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -9,7 +9,7 @@ ] }, "fsdocs-tool": { - "version": "16.1.1", + "version": "17.2.3", "commands": [ "fsdocs" ] diff --git a/.github/workflows/fable.yml b/.github/workflows/fable.yml index 47d9ee8f8..dd17c02af 100644 --- a/.github/workflows/fable.yml +++ b/.github/workflows/fable.yml @@ -17,12 +17,12 @@ jobs: run: git submodule update --init --recursive - name: Remove global json run: rm global.json - - name: Setup .NET Core + - name: Setup .NET Core 6 uses: actions/setup-dotnet@v1 with: dotnet-version: 6.0.201 - name: Restore tools - run: dotnet tool restore + run: dotnet tool install --global Fable --version 3.7.20 - name: Use Node.js uses: actions/setup-node@v1 with: @@ -32,7 +32,7 @@ jobs: run: npm install - name: Run Fable tests working-directory: tests/FSharpPlusFable.Tests - run: dotnet fable . --outDir bin --runScript ./bin + run: fable . --outDir bin --runScript ./bin testFable3SubsetOnCore: runs-on: ubuntu-latest