mirror of
https://github.com/cycjimmy/semantic-release-action.git
synced 2025-11-07 10:46:56 +00:00
parent
b25ce01eaf
commit
7ca507d26a
2 changed files with 2 additions and 2 deletions
|
|
@ -13,7 +13,7 @@ module.exports = async () => {
|
|||
? `@${semantic_version}`
|
||||
: '';
|
||||
|
||||
const {stdout, stderr} = await exec(`npm install semantic-release${versionSuffix}`, {
|
||||
const {stdout, stderr} = await exec(`npm install semantic-release${versionSuffix} --silent`, {
|
||||
cwd: path.resolve(__dirname, '..')
|
||||
});
|
||||
core.debug(stdout);
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ module.exports = async extras => {
|
|||
|
||||
const _extras = extras.replace(/['"]/g, '').replace(/[\n\r]/g, ' ');
|
||||
|
||||
const { stdout, stderr } = await exec(`npm install ${_extras}`, {
|
||||
const { stdout, stderr } = await exec(`npm install ${_extras} --silent`, {
|
||||
cwd: path.resolve(__dirname, '..')
|
||||
});
|
||||
core.debug(stdout);
|
||||
|
|
|
|||
Loading…
Reference in a new issue