From 35cd3eb04edfa15b1330d7d40063593bdddf2e5d Mon Sep 17 00:00:00 2001 From: Magic <131926685+magiccodingman@users.noreply.github.com> Date: Sun, 19 Jul 2026 14:26:10 -0400 Subject: [PATCH] Fix NuGet pack workflow --- .github/workflows/publish-nuget.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-nuget.yml b/.github/workflows/publish-nuget.yml index 6601963..ad42170 100644 --- a/.github/workflows/publish-nuget.yml +++ b/.github/workflows/publish-nuget.yml @@ -18,10 +18,10 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: 10.0.x @@ -54,7 +54,7 @@ jobs: run: >- dotnet pack MagicSettings.sln --configuration Release - --no-build + --no-restore --output ../artifacts/packages -p:PackageVersion=${{ steps.version.outputs.version }}