diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fb4c22b73..a9949b44b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -78,4 +78,7 @@ jobs: - name: NuGet Push if: startsWith(github.ref, 'refs/tags/') && matrix.dotnet.name == '.NET 8' && runner.os == 'Windows' - run: dotnet nuget push ${{ env.NuGetDirectory }}/*.*nupkg --api-key ${{steps.login.outputs.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json + 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 + } diff --git a/Source/Demo/Directory.Build.props b/Source/Demo/Directory.Build.props new file mode 100644 index 000000000..a8225ce90 --- /dev/null +++ b/Source/Demo/Directory.Build.props @@ -0,0 +1,6 @@ + + + Arthur Teplitzki + 1.5.1 + + diff --git a/Source/Directory.Build.props b/Source/Directory.Build.props index 330528c59..80c233a80 100644 --- a/Source/Directory.Build.props +++ b/Source/Directory.Build.props @@ -4,12 +4,15 @@ Arthur Teplitzki Arthur Teplitzki README.md - https://github.com/ArthurHub/HTML-Renderer/blob/master/LICENSE + BSD-3-Clause https://codeplexarchive.org/project/HtmlRenderer - https://raw.githubusercontent.com/ArthurHub/HTML-Renderer/refs/heads/master/html.ico + html.png false See https://github.com/ArthurHub/HTML-Renderer/releases. - 1.5.1 + 1.5.2-dev false + + + diff --git a/Source/SharedAssemblyInfo.cs b/Source/SharedAssemblyInfo.cs index 0f1277bad..3c63ddca5 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.1.0")] \ No newline at end of file +[assembly: AssemblyVersion("1.5.2.0")] \ No newline at end of file diff --git a/html.png b/html.png new file mode 100644 index 000000000..4e2eb38d5 Binary files /dev/null and b/html.png differ