Skip to content

Commit

Permalink
Changelog for 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
credfeto committed Oct 25, 2020
1 parent ef39a65 commit db07c9d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build-and-publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ jobs:
run: dotnet tool install --local FunFair.BuildVersion --add-source ${{ secrets.FUNFAIR_NUGET_FEED }}
- name: Install Multi-Push Tool
run: dotnet tool install --local Credfeto.Package.Push
- name: Install ChangeLog Tool
run: dotnet tool install --local Credfeto.ChangeLog.Cmd --add-source ${{ secrets.FUNFAIR_NUGET_FEED }}
- name: Set Define Build Version
run: dotnet buildversion ${{ steps.buildnumber.outputs.build_number }}
- name: Build with dotnet
Expand All @@ -51,3 +53,17 @@ jobs:
- name: Publish
run: |
dotnet pushpackages -folder dist --api-key ${{ secrets.NUGET_API_KEY }} --source ${{ secrets.NUGET_FEED }}
- name: Create Release Notes
run: |
dotnet changelog -changelog CHANGELOG.md -extract RELEASE_NOTES.md -version ${{ env.BUILD_VERSION }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ env.BUILD_VERSION }}
release_name: Release ${{ env.BUILD_VERSION }}
body_path: RELEASE_NOTES.md
draft: false
prerelease: false
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ Please ADD ALL Changes to the UNRELASED SECTION and not a specific release
### Added
### Fixed
### Changed
### Removed
### Deployment Changes

<!--
Releases that have at least been deployed to staging, BUT NOT necessarily released to live. Changes should be moved from [Unreleased] into here as they are merged into the appropriate release branch
-->
## [1.2.0] 2020-10-26
### Changed
- FF-1429 - Updated Microsoft.VisualStudio.Threading.Analyzers to 16.8.50
- FF-1429 - Updated SonarAnalyzer.CSharp to 8.14.0.22654
- FF-1429 - Updated SonarAnalyzer.CSharp to 8.13.1.21947
Expand All @@ -19,12 +27,8 @@ Please ADD ALL Changes to the UNRELASED SECTION and not a specific release
- FF-1429 - Updated SonarAnalyzer.CSharp to 8.11.0.20529
- FF-1429 - Updated Microsoft.CodeAnalysis.FxCopAnalyzers to 3.3.0
- FF-1429 - Updated Microsoft.VisualStudio.Threading.Analyzers to 16.7.54
### Removed
### Deployment Changes
- Updated build scripts

<!--
Releases that have at least been deployed to staging, BUT NOT necessarily released to live. Changes should be moved from [Unreleased] into here as they are merged into the appropriate release branch
-->
## [1.1.0] 2020-04-26
### Changed
- Updated to .net core 3.1.302
Expand Down

0 comments on commit db07c9d

Please sign in to comment.