Skip to content

Commit

Permalink
fix build pipline
Browse files Browse the repository at this point in the history
  • Loading branch information
sensslen committed May 2, 2024
1 parent bdaf95a commit 03f74e5
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
framework: [net6.0, net7.0, net8.0]

include:
- targetFramework: net6.0
- framework: net6.0
dotnetVersion: "6.0.x"

- targetFramework: net7.0
- framework: net7.0
dotnetVersion: "7.0.x"

- targetFramework: net8.0
- framework: net8.0
dotnetVersion: "8.0.x"

steps:
Expand All @@ -49,9 +49,25 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
framework: [net6.0, net7.0, net8.0, net472]
framework: [net6.0, net7.0, net8.0, net472]

include:
- framework: net6.0
dotnetVersion: "6.0.x"

- framework: net7.0
dotnetVersion: "7.0.x"

- framework: net8.0
dotnetVersion: "8.0.x"
steps:
- uses: actions/checkout@v4

- name: Setup dotnet ${{ matrix.dotnetVersion }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnetVersion }}

- uses: nuget/setup-nuget@v2
- run: nuget restore NuGetUtility.sln

Expand Down

0 comments on commit 03f74e5

Please sign in to comment.