Skip to content

Commit

Permalink
Fix helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Sep 2, 2024
1 parent f488fce commit bf7f23d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ async function extractVersions() {
}

core.notice(`New ${package} version found: ${version}`)
core.notice(`${stubsPackage} build version = ${version}`)
core.notice(`${stubsPackage} build version = ${buildStubsVersion}`)
core.setOutput('version', version)
core.setOutput('stubs-version', version)
core.setOutput('stubs-version', buildStubsVersion)
}

async function extractLocalVersions() {
Expand All @@ -112,9 +112,9 @@ async function extractLocalVersions() {
}

core.notice(`New ${package} version found: ${version}`)
core.notice(`${stubsPackage} build version = ${stubsVersion}`)
core.notice(`${stubsPackage} build version = ${version}`)
core.setOutput('version', version)
core.setOutput('stubs-version', stubsVersion)
core.setOutput('stubs-version', version)
}

module.exports = {
Expand Down

0 comments on commit bf7f23d

Please sign in to comment.