Skip to content

Commit

Permalink
Merge pull request #53 from Lombiq/issue/INFRA-92
Browse files Browse the repository at this point in the history
INFRA-92: NuGet publish
  • Loading branch information
Piedone authored Feb 15, 2022
2 parents a07cb78 + a181e9d commit fcf6adb
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ on:

jobs:
call-publish-workflow:
uses: Lombiq/NuGet-Publishing-GitHub-Actions/.github/workflows/publish.yml@dev
uses: Lombiq/GitHub-Actions/.github/workflows/publish.yml@dev
secrets:
apikey: ${{ secrets.DEFAULT_NUGET_PUBLISH_API_KEY }}
API_KEY: ${{ secrets.DEFAULT_NUGET_PUBLISH_API_KEY }}
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
.vs/
obj/
bin/
*.user
artifacts/
.vs/
wwwroot/
node_modules/
*.user
.pnpm-debug.log
27 changes: 23 additions & 4 deletions Lombiq.HelpfulExtensions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,29 @@
<DefaultItemExcludes>$(DefaultItemExcludes);.git*;node_modules\**</DefaultItemExcludes>
</PropertyGroup>

<PropertyGroup>
<Title>Lombiq Helpful Extensions for Orchard Core</Title>
<Authors>Lombiq Technologies</Authors>
<Copyright>Copyright © 2013, Lombiq Technologies Ltd.</Copyright>
<Description>Lombiq Helpful Extensions for Orchard Core: Orchard Core module containing some handy extensions (e.g. useful content types and widgets). It's also available on all sites of DotNest, the Orchard SaaS. See the project website for detailed documentation.</Description>
<PackageIcon>NuGetIcon.png</PackageIcon>
<PackageTags>OrchardCore;Lombiq;AspNetCore;CodeGeneration;ShapeTracing;Widgets</PackageTags>
<RepositoryUrl>https://github.com/Lombiq/Helpful-Extensions</RepositoryUrl>
<PackageProjectUrl>https://github.com/Lombiq/Helpful-Extensions</PackageProjectUrl>
<PackageLicenseFile>Licence.md</PackageLicenseFile>
</PropertyGroup>

<ItemGroup>
<None Remove="node_modules\**" />
<None Include="Licence.md" Pack="true" PackagePath="" />
<None Include="Readme.md" />
<None Include="NuGetIcon.png" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
<None Remove="node_modules\**" />
<None Remove="Tests\**" />
</ItemGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
Expand All @@ -23,13 +42,13 @@
<PackageReference Include="OrchardCore.Module.Targets" Version="1.2.2" />
</ItemGroup>

<ItemGroup Condition="'$(NuGetBuild)' != 'True'">
<ItemGroup Condition="'$(NuGetBuild)' != 'true'">
<ProjectReference Include="..\..\Libraries\Lombiq.HelpfulLibraries\Lombiq.HelpfulLibraries\Lombiq.HelpfulLibraries.csproj" Condition="Exists('..\..\Libraries\Lombiq.HelpfulLibraries\Lombiq.HelpfulLibraries\Lombiq.HelpfulLibraries.csproj')" />
<ProjectReference Include="..\..\Libraries\Lombiq.HelpfulLibraries\Lombiq.HelpfulLibraries.csproj" Condition="Exists('..\..\Libraries\Lombiq.HelpfulLibraries\Lombiq.HelpfulLibraries.csproj')" />
</ItemGroup>

<ItemGroup Condition="'$(NuGetBuild)' == 'True'">
<PackageReference Include="Lombiq.HelpfulLibraries.Targets" Version="0.0.11" />
<ItemGroup Condition="'$(NuGetBuild)' == 'true'">
<PackageReference Include="Lombiq.HelpfulLibraries" Version="0.0.21" />
</ItemGroup>

</Project>
Binary file added NuGetIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@



[![Lombiq.HelpfulExtensions NuGet](https://img.shields.io/nuget/v/Lombiq.HelpfulExtensions?label=Lombiq.HelpfulExtensions)](https://www.nuget.org/packages/Lombiq.HelpfulExtensions/)


## About

Orchard Core module containing some handy extensions (e.g. useful content types and widgets). It's also available on all sites of [DotNest, the Orchard SaaS](https://dotnest.com/).
Expand Down

0 comments on commit fcf6adb

Please sign in to comment.