Remove workaround for setOutput

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2022-10-08 18:46:17 +02:00
parent bfc44eaf57
commit 2d3efc7878
4 changed files with 3 additions and 9 deletions

View File

@@ -44,7 +44,7 @@ async function run(): Promise<void> {
}
const platforms: Platforms = JSON.parse(res.stdout.trim());
core.info(`${platforms.supported.join(',')}`);
context.setOutput('platforms', platforms.supported.join(','));
core.setOutput('platforms', platforms.supported.join(','));
});
});
} catch (error) {