File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -5416,6 +5416,9 @@ async function main () {
5416
5416
if ( core . getInput ( 'prerelease' ) ) {
5417
5417
args . push ( '--prerelease' )
5418
5418
}
5419
+ if ( core . getInput ( 'prepend' ) ) {
5420
+ args . push ( '--prepend-changelog' )
5421
+ }
5419
5422
if ( core . getInput ( 'dry' ) ) {
5420
5423
args . push ( '--dry' )
5421
5424
}
@@ -5439,7 +5442,7 @@ async function main () {
5439
5442
args . push ( changelogOpts [ idx ] )
5440
5443
}
5441
5444
}
5442
- const binPath = await installer ( '^2.5.0' )
5445
+ const binPath = await installer ( )
5443
5446
try {
5444
5447
core . info ( 'running semantic-release...' )
5445
5448
await exec . exec ( binPath , args )
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ async function main () {
62
62
args . push ( changelogOpts [ idx ] )
63
63
}
64
64
}
65
- const binPath = await installer ( '^2.5.0' )
65
+ const binPath = await installer ( )
66
66
try {
67
67
core . info ( 'running semantic-release...' )
68
68
await exec . exec ( binPath , args )
You can’t perform that action at this time.
0 commit comments