From 596c6addd5a5b171ff2648544f7cac4972dc5d40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20D=C3=BCrrenberger?= Date: Mon, 22 Dec 2025 21:19:43 +0100 Subject: [PATCH 1/2] Prevent duplicated NuGet publishin NuGet --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a9949b44b..a76991f76 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,5 +80,5 @@ jobs: if: startsWith(github.ref, 'refs/tags/') && matrix.dotnet.name == '.NET 8' && runner.os == 'Windows' run: | foreach ($file in (Get-ChildItem ${{ env.NuGetDirectory }} -Recurse -Include *.*nupkg)) { - dotnet nuget push $file --api-key ${{steps.login.outputs.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json + dotnet nuget push $file --skip-duplicate --api-key ${{steps.login.outputs.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json } From d1aec39706fd7541557ae1a51f8c821cadb9fd21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20D=C3=BCrrenberger?= Date: Mon, 22 Dec 2025 21:20:35 +0100 Subject: [PATCH 2/2] Update version to the next pre-release version --- Source/Directory.Build.props | 2 +- Source/SharedAssemblyInfo.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Directory.Build.props b/Source/Directory.Build.props index c86c622e0..9574b2471 100644 --- a/Source/Directory.Build.props +++ b/Source/Directory.Build.props @@ -9,7 +9,7 @@ html.png false See https://github.com/ArthurHub/HTML-Renderer/releases. - 1.5.2 + 1.6.0-dev false diff --git a/Source/SharedAssemblyInfo.cs b/Source/SharedAssemblyInfo.cs index 3c63ddca5..64944c19b 100644 --- a/Source/SharedAssemblyInfo.cs +++ b/Source/SharedAssemblyInfo.cs @@ -26,4 +26,4 @@ // Version information for an assembly consists of the following four values: -[assembly: AssemblyVersion("1.5.2.0")] \ No newline at end of file +[assembly: AssemblyVersion("1.6.0.0")] \ No newline at end of file