Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# - name: Setup .NET SDK
# uses: actions/setup-dotnet@v5
# with:
# dotnet-version: 8.x
# dotnet-version: 10.x
#
# - name: Run Unit Tests
# run: dotnet test --configuration Release --verbosity normal --collect:"XPlat Code Coverage"
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.x
dotnet-version: 10.x

# Create the NuGet package in the folder from the environment variable NuGetDirectory
- run: dotnet pack --configuration Release --output ${{ env.NuGetDirectory }}
Expand All @@ -79,7 +79,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.x
dotnet-version: 10.x

# Download the NuGet package created in the previous job
- uses: actions/download-artifact@v8
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.x
dotnet-version: 10.x

# Publish all NuGet packages to NuGet.org
# Use --skip-duplicate to prevent errors if a package with the same version already exists.
Expand Down
Loading