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 c63b512 commit e14375e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
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 e14375e

Please sign in to comment.