Skip to content

Commit

Permalink
Included Debug Symbols in the main NuGet Package
Browse files Browse the repository at this point in the history
  • Loading branch information
ashneilson committed Mar 22, 2021
1 parent ed95645 commit fb44d97
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,15 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/tags/') }}
run: dotnet nuget push "${{ env.PROJECT_NAME }}/bin/Release/*.nupkg" -k ${{ secrets.NUGET_APIKEY }} -s "https://api.nuget.org/v3/index.json" --skip-duplicate

# Step 9 - Create New Release
# Step 9 - Generate the Changelog
- name: Generate the Changelog
id: changelog
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: metcalfc/[email protected]
with:
myToken: ${{ secrets.GITHUB_TOKEN }}

# Step 10 - Create New Release
- name: Create New Release
id: create-release
if: ${{ startsWith(github.ref, 'refs/tags/') }}
Expand All @@ -68,8 +76,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.CI_REF_NAME }}
release_name: ${{ env.PROJECT_NAME }} ${{ env.CI_REF_NAME }}
release_name: Version ${{ env.CI_REF_NAME }}
body: |
${{ env.PROJECT_NAME }} Version ${{ env.CI_REF_NAME }}
Built Automatically with :heart: using GitHub Actions
${{ steps.changelog.outputs.changelog }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# dotnet-unitronics
# RICADO.Unitronics
A Unitronics PLC Communication Library for .NET 5 Applications
6 changes: 2 additions & 4 deletions RICADO.Unitronics/RICADO.Unitronics.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
<Authors>RICADO Group</Authors>
<Company>RICADO Group LP</Company>
<Description>A Unitronics PLC Communication Library for .NET 5 Applications</Description>
<Copyright>Copyright © RICADO Group LP 2009 - 2021</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>packageIcon.png</PackageIcon>
<RepositoryUrl>https://github.com/ricado-group/dotnet-unitronics</RepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
Expand All @@ -27,8 +29,4 @@
<PackageReference Include="RICADO.Sockets" Version="1.0.1" />
</ItemGroup>

<ItemGroup>
<Folder Include="Requests\" />
</ItemGroup>

</Project>

0 comments on commit fb44d97

Please sign in to comment.