Add GitHub action infrastructure.

This commit is contained in:
Fabio Niephaus
2022-01-03 08:43:40 +01:00
parent 1478c743ed
commit db50d45bd5
13 changed files with 11418 additions and 0 deletions

12
src/main.ts Normal file
View File

@@ -0,0 +1,12 @@
import * as core from '@actions/core'
async function run(): Promise<void> {
try {
let graalVMHome
core.exportVariable('GRAALVM_HOME', graalVMHome)
} catch (error) {
if (error instanceof Error) core.setFailed(error.message)
}
}
run()