From 6ebeb536749292f5ed3f7d34ca5c99f6c2786be6 Mon Sep 17 00:00:00 2001 From: milimoe Date: Fri, 14 Nov 2025 01:42:08 +0800 Subject: [PATCH] update workflow --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index d2d22c0..da6985d 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -21,7 +21,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 9.0.x + dotnet-version: 10.0.x - name: Restore dependencies run: dotnet restore - name: Build @@ -31,7 +31,7 @@ jobs: - name: Prepare files for latest branch run: | mkdir -p latest - cp -r ./bin/Release/net9.0/FunGame.Core.dll ./bin/Release/net9.0/FunGame.Core.xml ./bin/Release/net9.0/FunGame.Core.deps.json ./latest/ + cp -r ./bin/Release/net10.0/FunGame.Core.dll ./bin/Release/net10.0/FunGame.Core.xml ./bin/Release/net10.0/FunGame.Core.deps.json ./latest/ - name: Commit and push to latest if: success() run: |