diff --git a/src/handleOptions.js b/src/handleOptions.js index ed1a39a..829667f 100644 --- a/src/handleOptions.js +++ b/src/handleOptions.js @@ -121,7 +121,7 @@ exports.handleTagFormat = () => { * Handle repository-url Option * @returns {{}|{r: String}} */ -exports.handleRepositoryOption = () => { +exports.handleRepositoryUrlOption = () => { const repositoryUrl = core.getInput(inputs.repository_url); core.debug(`repository_url input: ${repositoryUrl}`); diff --git a/src/index.js b/src/index.js index a4d2862..095a5f8 100644 --- a/src/index.js +++ b/src/index.js @@ -1,4 +1,4 @@ -import { handleRepositoryOption } from './handleOptions'; +import { handleRepositoryUrlOption } from './handleOptions'; const core = require('@actions/core'); const { @@ -35,7 +35,7 @@ const release = async () => { ...handleCiOption(), ...handleExtends(), ...handleTagFormat(), - ...handleRepositoryOption() + ...handleRepositoryUrlOption() }); await cleanupNpmrc();