From 7d77077909069089dffa948cd9a272101d686281 Mon Sep 17 00:00:00 2001 From: Tyler Carrol Date: Tue, 15 Sep 2026 17:56:31 -0400 Subject: [PATCH] fix: workflow dotnet version reference format --- .github/workflows/tag-creates-nuget-package.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tag-creates-nuget-package.yml b/.github/workflows/tag-creates-nuget-package.yml index 37d4a5c..a607aca 100644 --- a/.github/workflows/tag-creates-nuget-package.yml +++ b/.github/workflows/tag-creates-nuget-package.yml @@ -1,8 +1,8 @@ # Creation of a version tag will trigger this workflow # A new release will be created from the tag --- -name: Tag → Create Package -run-name: Tag [${{ github.ref_name }}] → Create Package +name: Tag → Create Package +run-name: Tag [${{ github.ref_name }}] → Create Package on: push: @@ -37,7 +37,7 @@ jobs: - name: Setup .NET 8.0 uses: actions/setup-dotnet@v4 with: - dotnet-version: ["10.0.x"] + dotnet-version: "10.0.x" - name: Setup MSBuild uses: microsoft/setup-msbuild@v2