mirror of
https://github.com/cycjimmy/semantic-release-action.git
synced 2025-11-07 18:56:56 +00:00
fix(install): uninterrupted installation errors
This commit is contained in:
parent
b9f219a4d5
commit
3a7ccd6a7f
2 changed files with 2 additions and 8 deletions
|
|
@ -17,8 +17,5 @@ module.exports = async () => {
|
||||||
cwd: path.resolve(__dirname, '..')
|
cwd: path.resolve(__dirname, '..')
|
||||||
});
|
});
|
||||||
core.debug(stdout);
|
core.debug(stdout);
|
||||||
|
core.error(stderr);
|
||||||
if (stderr) {
|
|
||||||
return Promise.reject(stderr);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,5 @@ module.exports = async () => {
|
||||||
cwd: path.resolve(__dirname, '..')
|
cwd: path.resolve(__dirname, '..')
|
||||||
});
|
});
|
||||||
core.debug(stdout);
|
core.debug(stdout);
|
||||||
|
core.error(stderr);
|
||||||
if (stderr) {
|
|
||||||
return Promise.reject(stderr);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue