mirror of
https://github.com/cycjimmy/semantic-release-action.git
synced 2025-11-14 14:03:47 +00:00
fix(extends): missing reserved keyword fix
This commit is contained in:
parent
fcaa8ba03a
commit
1436f60689
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ 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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue