Skip to content

Commit

Permalink
fix: remove the filter for semantic release errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hanseltime committed Feb 5, 2024
1 parent 467b66d commit 46dc618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ async function logErrors({ logger, stderr }, err) {
}

async function callFail(context, plugins, err) {
const errors = extractErrors(err).filter((err) => err.semanticRelease);
const errors = extractErrors(err)
if (errors.length > 0) {
try {
await plugins.fail({ ...context, errors });
Expand Down

0 comments on commit 46dc618

Please sign in to comment.