@@ -14,10 +14,10 @@ jobs:
1414 with :
1515 fetch-depth : 0
1616
17- - name : Setup .NET Core SDK 8 .0.x
17+ - name : Setup .NET Core SDK 10 .0.x
1818 uses : actions/setup-dotnet@v5
1919 with :
20- dotnet-version : 8 .0.x
20+ dotnet-version : 10 .0.x
2121
2222 - name : Install dependencies
2323 run : dotnet restore
@@ -26,31 +26,31 @@ jobs:
2626 run : dotnet publish -c Release
2727
2828 - name : Zip dotnet release
29- run : zip release-${{ github.ref_name }}-dotnet.zip bin/Release/net8 .0/publish/*
29+ run : zip release-${{ github.ref_name }}-dotnet.zip bin/Release/net10 .0/publish/*
3030
3131 - name : Build linux x64
3232 run : dotnet publish -c Release -r linux-x64 --self-contained
3333
3434 - name : Zip linux-64 release
35- run : zip release-${{ github.ref_name }}-linux-gnu.zip bin/Release/net8 .0/linux-x64/publish/*
35+ run : zip release-${{ github.ref_name }}-linux-gnu.zip bin/Release/net10 .0/linux-x64/publish/*
3636
3737 - name : Build linux musl
3838 run : dotnet publish -c Release -r linux-musl-x64 --self-contained
3939
4040 - name : Zip linux-musl-x64 release
41- run : zip release-${{ github.ref_name }}-linux-musl.zip bin/Release/net8 .0/linux-musl-x64/publish/*
41+ run : zip release-${{ github.ref_name }}-linux-musl.zip bin/Release/net10 .0/linux-musl-x64/publish/*
4242
4343 - name : Build win x64
4444 run : dotnet publish -c Release -r win-x64 --self-contained
4545
4646 - name : Zip win-x64 release
47- run : zip release-${{ github.ref_name }}-win.zip bin/Release/net8 .0/win-x64/publish/*
47+ run : zip release-${{ github.ref_name }}-win.zip bin/Release/net10 .0/win-x64/publish/*
4848
4949 - name : Build osx x64
5050 run : dotnet publish -c Release -r osx-x64 --self-contained
5151
5252 - name : Zip osx-x64 release
53- run : zip release-${{ github.ref_name }}-osx-x64.zip bin/Release/net8 .0/osx-x64/publish/*
53+ run : zip release-${{ github.ref_name }}-osx-x64.zip bin/Release/net10 .0/osx-x64/publish/*
5454
5555 - name : Release
5656 uses : softprops/action-gh-release@v2
0 commit comments