File tree Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 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/') }}
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 }}
Original file line number Diff line number Diff line change 1- # dotnet-omron
1+ # RICADO.Omron
22An Omron PLC Communication Library for .NET 5 Applications
Original file line number Diff line number Diff line change 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 >
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 >
You can’t perform that action at this time.
0 commit comments