Skip to content

Commit 88bb14c

Browse files
JusterZhuclaude
andcommitted
chore: bump version to v10.5.0-beta.6 and fix CI pipeline
- Update all 5 component .csproj versions: 10.5.0-beta.2 → 10.5.0-beta.6 (GeneralUpdate.Bowl, Core, Differential, Drivelution, Extension) - Remove stale project references (ClientCore, Common) from CI workflow - Add nuget.org push step to CI workflow Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5056a51 commit 88bb14c

6 files changed

Lines changed: 18 additions & 7 deletions

File tree

.github/workflows/dotnet-ci.yaml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ jobs:
3030
run: |
3131
$projects = @(
3232
"GeneralUpdate.Bowl",
33-
"GeneralUpdate.ClientCore",
34-
"GeneralUpdate.Common",
3533
"GeneralUpdate.Core",
3634
"GeneralUpdate.Differential",
3735
"GeneralUpdate.Drivelution",
@@ -48,6 +46,19 @@ jobs:
4846
}
4947
shell: pwsh
5048

49+
- name: 推送NuGet包到 nuget.org
50+
run: |
51+
$nupkgs = Get-ChildItem ./nupkgs/*.nupkg
52+
foreach ($nupkg in $nupkgs) {
53+
dotnet nuget push $nupkg.FullName `
54+
--api-key ${{ secrets.NUGET_API_KEY }} `
55+
--source https://api.nuget.org/v3/index.json `
56+
--skip-duplicate
57+
}
58+
shell: pwsh
59+
env:
60+
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
61+
5162
- name: 生成更新日志
5263
shell: pwsh
5364
run: |

src/c#/GeneralUpdate.Bowl/GeneralUpdate.Bowl.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<RepositoryType>public</RepositoryType>
1515
<PackageTags>upgrade,update,crash,recovery,rollback,monitor,backup</PackageTags>
1616
<PackageReleaseNotes>10.5.0-beta.1: Refactored to instance-based async design with DI support. Removed IPC dependency and macOS platform support.</PackageReleaseNotes>
17-
<Version>10.5.0-beta.2</Version>
17+
<Version>10.5.0-beta.6</Version>
1818
<PackageIcon>bowl.jpeg</PackageIcon>
1919
<TargetFrameworks>netstandard2.0;</TargetFrameworks>
2020
</PropertyGroup>

src/c#/GeneralUpdate.Core/GeneralUpdate.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PackageReleaseNotes>10.5.0-beta.1: Zero-config SetSource() API, manifest.json auto-discovery, IUpdateHooks extension points, appsettings.json LoadFromConfiguration() support, SSL/HttpClient lifecycle fixes, and OSS update flow improvements.</PackageReleaseNotes>
1414
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1515
<PackageReadmeFile>README.md</PackageReadmeFile>
16-
<Version>10.5.0-beta.2</Version>
16+
<Version>10.5.0-beta.6</Version>
1717
<TargetFrameworks>netstandard2.0;net8.0;net10.0</TargetFrameworks>
1818
<IsAotCompatible Condition="'$(TargetFramework)' != 'netstandard2.0'">true</IsAotCompatible>
1919
<EnableTrimAnalyzer Condition="'$(TargetFramework)' != 'netstandard2.0'">true</EnableTrimAnalyzer>

src/c#/GeneralUpdate.Differential/GeneralUpdate.Differential.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<RepositoryUrl>https://github.com/JusterZhu/GeneralUpdate</RepositoryUrl>
66
<Description>Binary diff/patch algorithms (BSDIFF, HDiffPatch) with Brotli compression for generating and applying incremental updates. Includes parallel file processing with progress reporting and cancellation support.</Description>
77
<Authors>JusterZhu</Authors>
8-
<Version>10.5.0-beta.2</Version>
8+
<Version>10.5.0-beta.6</Version>
99
<PackageProjectUrl>https://github.com/GeneralLibrary/GeneralUpdate</PackageProjectUrl>
1010
<Copyright>Copyright © 2020-2026 JusterZhu. All rights reserved.</Copyright>
1111
<LangVersion>default</LangVersion>

src/c#/GeneralUpdate.Drivelution/GeneralUpdate.Drivelution.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
1212
<TrimMode>full</TrimMode>
1313
<!-- NuGet Package Metadata -->
14-
<Version>10.5.0-beta.2</Version>
14+
<Version>10.5.0-beta.6</Version>
1515
<Authors>JusterZhu</Authors>
1616
<Company>juster.zhu</Company>
1717
<Title>GeneralUpdate.Drivelution</Title>

src/c#/GeneralUpdate.Extension/GeneralUpdate.Extension.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Nullable>enable</Nullable>
66
<LangVersion>latest</LangVersion>
77
<!-- NuGet Package Metadata -->
8-
<Version>10.5.0-beta.2</Version>
8+
<Version>10.5.0-beta.6</Version>
99
<Authors>JusterZhu</Authors>
1010
<Company>juster.zhu</Company>
1111
<Title>GeneralUpdate.Extension</Title>

0 commit comments

Comments
 (0)