Skip to content

Commit

Permalink
fix(actions): fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Lulalaby committed Nov 15, 2023
1 parent e6161b2 commit 4dae3db
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
dotnet: [6.x, 7.0.404, 8.0.100]
runs-on: ${{ matrix.os }}
name: Build library
steps:
Expand All @@ -29,7 +28,10 @@ jobs:
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: ${{ matrix.dotnet }}
dotnet-version: |
8.0.100
7.0.403
6.x
- name: Restore dependencies
run: dotnet restore
- name: Build library
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ jobs:
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: 7.0.404
dotnet-version: |
8.0.100
7.0.403
6.x
- name: Git fetch unshallow
run: git fetch --unshallow
- name: Install DocFX
Expand Down

0 comments on commit 4dae3db

Please sign in to comment.