initial version

This commit is contained in:
CrazyMax
2025-01-20 13:05:32 +01:00
parent 3c10fbecb7
commit 7b823b0ff9
21 changed files with 7968 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import * as core from '@actions/core';
export interface Inputs {
version: string;
cacheBinary: boolean;
}
export async function getInputs(): Promise<Inputs> {
return {
version: core.getInput('version'),
cacheBinary: core.getBooleanInput('cache-binary')
};
}