From 2e10d480d207dce0276f89b8b6a1dddbe3d3c49d Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Fri, 27 Feb 2026 14:49:15 +0700 Subject: [PATCH] Update release.yml --- csharp/.github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/csharp/.github/workflows/release.yml b/csharp/.github/workflows/release.yml index cd196e3..7538907 100644 --- a/csharp/.github/workflows/release.yml +++ b/csharp/.github/workflows/release.yml @@ -3,7 +3,7 @@ name: Create Draft Release on: push: tags: - - 'v*' + - "v*" permissions: contents: write @@ -14,12 +14,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.x + dotnet-version: 10.x - name: Build Solution run: dotnet build TimeMocker.sln -c Release -p:Platform=x64