From 5f893a87d988787c3dc52204f9ec0656307e19ba Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Fri, 27 Feb 2026 14:49:15 +0700 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cd196e3..7538907 100644 --- a/.github/workflows/release.yml +++ b/.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