mirror of
https://github.com/cycjimmy/semantic-release-action.git
synced 2025-11-14 05:53:46 +00:00
fix: extends is a reserved keyword
This commit is contained in:
parent
c1d4f0cca8
commit
fcaa8ba03a
1 changed files with 2 additions and 2 deletions
|
|
@ -41,10 +41,10 @@ exports.handleDryRunOption = () => {
|
||||||
*/
|
*/
|
||||||
exports.handleExtendsOption = () => {
|
exports.handleExtendsOption = () => {
|
||||||
const extendsOption = {};
|
const extendsOption = {};
|
||||||
const extends = core.getInput(inputs.extends);
|
const _extends = core.getInput(inputs.extends);
|
||||||
|
|
||||||
if (extends) {
|
if (extends) {
|
||||||
extendsOption.extends = extends;
|
extendsOption.extends = _extends;
|
||||||
}
|
}
|
||||||
|
|
||||||
return extendsOption;
|
return extendsOption;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue