This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit 5900b3d08b7b61d317875d0a8a5c2c9e28495f3f Author: Shad Storhaug <[email protected]> AuthorDate: Sun Jan 16 02:44:14 2022 +0700 .github/workflows/Lucene-Net-Documentation.yml: Added .NET 6 SDK setup prior to running docs.ps1 --- .github/workflows/Lucene-Net-Documentation.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/Lucene-Net-Documentation.yml b/.github/workflows/Lucene-Net-Documentation.yml index f2618e5..65eafb7 100644 --- a/.github/workflows/Lucene-Net-Documentation.yml +++ b/.github/workflows/Lucene-Net-Documentation.yml @@ -118,6 +118,11 @@ jobs: git --git-dir "$Env:GIT_MAIN_REPO" checkout -b "docs/${{ env.RELEASE_VERSION }}" shell: powershell + - name: Setup .NET 6 SDK + uses: actions/setup-dotnet@v1 + with: + dotnet-version: '6.0.101' + - name: Build docs run: ./main-repo/websites/apidocs/docs.ps1 -Clean -LuceneNetVersion ${{ env.RELEASE_VERSION }} shell: powershell
