Skip to content

Commit 9696564

Browse files
committed
Fixing incorrect function call in the only untested method :(
1 parent f8d5082 commit 9696564

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

build/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20770,7 +20770,7 @@ async function run() {
2077020770
core.setOutput("RELEASE_VERSION", releaseVersionStr);
2077120771

2077220772
// Parse and set 'NEXT_VERSION' outputs
20773-
const nextVersion = generateReleaseVersion(parsedVersion, releaseVersion, properties);
20773+
const nextVersion = generateNextVersion(parsedVersion, releaseVersion, properties);
2077420774
const nextVersionStr = nextVersion.toString();
2077520775
core.info("Got next version: " + nextVersionStr);
2077620776
core.exportVariable("NEXT_VERSION", nextVersionStr);

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ async function run() {
252252
core.setOutput("RELEASE_VERSION", releaseVersionStr);
253253

254254
// Parse and set 'NEXT_VERSION' outputs
255-
const nextVersion = generateReleaseVersion(parsedVersion, releaseVersion, properties);
255+
const nextVersion = generateNextVersion(parsedVersion, releaseVersion, properties);
256256
const nextVersionStr = nextVersion.toString();
257257
core.info("Got next version: " + nextVersionStr);
258258
core.exportVariable("NEXT_VERSION", nextVersionStr);

0 commit comments

Comments
 (0)