File tree Expand file tree Collapse file tree 3 files changed +30
-3
lines changed
test/WeihanLi.EntityFramework.Test Expand file tree Collapse file tree 3 files changed +30
-3
lines changed Original file line number Diff line number Diff line change 1+ name : Release
2+ on :
3+ workflow_dispatch :
4+ push :
5+ branches : [ master ]
6+ jobs :
7+ build :
8+ name : Release
9+ runs-on : windows-latest
10+ steps :
11+ - uses : actions/checkout@v4
12+ - name : Setup .NET SDK
13+ uses : actions/setup-dotnet@v4
14+ with :
15+ dotnet-version : 8.0.x
16+ - name : Build
17+ shell : pwsh
18+ run : .\build.ps1 --stable=true
19+ - name : Get Release Version
20+ shell : pwsh
21+ run : dotnet-exec https://github.com/OpenReservation/scripts/blob/main/build/export-gh-release-version.cs
22+ - name : create release
23+ shell : pwsh
24+ env :
25+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
26+ run : |
27+ gh release create ${{ env.ReleaseVersion }} --generate-notes --target master (Get-Item ./artifacts/packages/*.nupkg)
Original file line number Diff line number Diff line change 66 <LangVersion >latest</LangVersion >
77 <ImplicitUsings >enable</ImplicitUsings >
88 <Nullable >enable</Nullable >
9- <CommonVersion >1.0.67 </CommonVersion >
10- <EFVersion >8.0.7 </EFVersion >
9+ <CommonVersion >1.0.68 </CommonVersion >
10+ <EFVersion >8.0.8 </EFVersion >
1111
1212 <PublishRepositoryUrl >true</PublishRepositoryUrl >
1313 <EmbedUntrackedSources >true</EmbedUntrackedSources >
Original file line number Diff line number Diff line change 1010 <ItemGroup >
1111 <PackageReference Include =" Microsoft.EntityFrameworkCore.InMemory" Version =" $(EFVersion)" />
1212 <PackageReference Include =" Microsoft.EntityFrameworkCore.SqlServer" Version =" $(EFVersion)" />
13- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.10 .0" />
13+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.11 .0" />
1414 <PackageReference Include =" xunit" Version =" 2.9.0" />
1515 </ItemGroup >
1616
You can’t perform that action at this time.
0 commit comments