From a6620e55c093afe5641d80a58460aea7747ca5d6 Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Tue, 28 May 2024 23:10:33 +0200 Subject: [PATCH] Fixed a typo. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 691e8b1..24c1d74 100644 --- a/index.js +++ b/index.js @@ -71,7 +71,7 @@ async function main() { const current_version = await increaseVersion(url_pattern, start_version); const export_to = core.getInput("export-to"); core.info(`The new version determend is ${current_version}`); - exportVariable("current_version", `${current_version}`); + core.exportVariable("current_version", `${current_version}`); core.setOutput("current_version", `${current_version}`); } catch (error) { core.setFailed(`Action failed with error: ${error}`);