File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ export default class VersionFilePlugin implements IPlugin {
141
141
// Ship canary release if release script is provided
142
142
if ( this . publishScript ) {
143
143
auto . logger . log . info ( `Calling release script in repo at ${ this . publishScript } ` ) ;
144
- await execPromise ( this . publishScript , [ "snapshot " ] ) ;
144
+ await execPromise ( this . publishScript , [ "canary " ] ) ;
145
145
} else {
146
146
auto . logger . log . info ( "Skipping calling release script in repo since none was provided" ) ;
147
147
}
@@ -188,7 +188,7 @@ export default class VersionFilePlugin implements IPlugin {
188
188
// ship next release if release script is provided
189
189
if ( this . publishScript ) {
190
190
auto . logger . log . info ( `Calling release script in repo at ${ this . publishScript } ` ) ;
191
- await execPromise ( this . publishScript , [ "snapshot " ] ) ;
191
+ await execPromise ( this . publishScript , [ "next " ] ) ;
192
192
} else {
193
193
auto . logger . log . info ( "Skipping calling release script in repo since none was provided" ) ;
194
194
}
You can’t perform that action at this time.
0 commit comments