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 c0807b5 commit 573dd5b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 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-omron
# RICADO.Omron
An Omron PLC Communication Library for .NET 5 Applications
5 changes: 4 additions & 1 deletion RICADO.Omron/RICADO.Omron.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>packageIcon.png</PackageIcon>
<RepositoryUrl>https://github.com/ricado-group/dotnet-omron</RepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
Expand All @@ -23,7 +26,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="RICADO.Sockets" Version="1.0.1" />
<PackageReference Include="RICADO.Sockets" Version="1.0.2" />
</ItemGroup>

</Project>

0 comments on commit 573dd5b

Please sign in to comment.