mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-22 01:46:04 +00:00
Fix missing await in release finder
This commit is contained in:
parent
b1a785ed4d
commit
0fb19ff58f
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
@ -89,7 +89,7 @@ async function run() {
|
|||
let release = {};
|
||||
try {
|
||||
const version = core.getInput("version");
|
||||
release = release_data(version, octokit);
|
||||
release = await release_data(version, octokit);
|
||||
core.info(
|
||||
`Input version '${version}' resolved to Nextflow ${release.name}`
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue