Skip to content

Commit

Permalink
build: Remove develop builds from changelog
Browse files Browse the repository at this point in the history
The changelog became very full and confusing with all the development builds. Therefore I decided not to include builds from the `develop` branch in the changelog anymore.
  • Loading branch information
sebbo2002 committed Oct 22, 2023
1 parent 13ffe4e commit c09342d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion release.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ configuration.plugins.push(['@semantic-release/commit-analyzer', {

configuration.plugins.push('@semantic-release/release-notes-generator');

configuration.plugins.push('@semantic-release/changelog');
if (process.env.BRANCH === 'main') {
configuration.plugins.push('@semantic-release/changelog');
}

configuration.plugins.push('semantic-release-license');

Expand Down

0 comments on commit c09342d

Please sign in to comment.