Skip to content

Commit 573dd5b

Browse files
committed
Included Debug Symbols in the main NuGet Package
1 parent c0807b5 commit 573dd5b

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,15 @@ jobs:
5959
if: ${{ startsWith(github.ref, 'refs/tags/') }}
6060
run: dotnet nuget push "${{ env.PROJECT_NAME }}/bin/Release/*.nupkg" -k ${{ secrets.NUGET_APIKEY }} -s "https://api.nuget.org/v3/index.json" --skip-duplicate
6161

62-
# Step 9 - Create New Release
62+
# Step 9 - Generate the Changelog
63+
- name: Generate the Changelog
64+
id: changelog
65+
if: ${{ startsWith(github.ref, 'refs/tags/') }}
66+
uses: metcalfc/changelog-generator@v1.0.0
67+
with:
68+
myToken: ${{ secrets.GITHUB_TOKEN }}
69+
70+
# Step 10 - Create New Release
6371
- name: Create New Release
6472
id: create-release
6573
if: ${{ startsWith(github.ref, 'refs/tags/') }}
@@ -68,8 +76,6 @@ jobs:
6876
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6977
with:
7078
tag_name: ${{ env.CI_REF_NAME }}
71-
release_name: ${{ env.PROJECT_NAME }} ${{ env.CI_REF_NAME }}
79+
release_name: Version ${{ env.CI_REF_NAME }}
7280
body: |
73-
${{ env.PROJECT_NAME }} Version ${{ env.CI_REF_NAME }}
74-
75-
Built Automatically with :heart: using GitHub Actions
81+
${{ steps.changelog.outputs.changelog }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# dotnet-omron
1+
# RICADO.Omron
22
An Omron PLC Communication Library for .NET 5 Applications

RICADO.Omron/RICADO.Omron.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1010
<PackageIcon>packageIcon.png</PackageIcon>
1111
<RepositoryUrl>https://github.com/ricado-group/dotnet-omron</RepositoryUrl>
12+
<IncludeSymbols>true</IncludeSymbols>
13+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
14+
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
1215
</PropertyGroup>
1316

1417
<ItemGroup>
@@ -23,7 +26,7 @@
2326
</ItemGroup>
2427

2528
<ItemGroup>
26-
<PackageReference Include="RICADO.Sockets" Version="1.0.1" />
29+
<PackageReference Include="RICADO.Sockets" Version="1.0.2" />
2730
</ItemGroup>
2831

2932
</Project>

0 commit comments

Comments
 (0)