Initial commit

This commit is contained in:
Ross MacArthur
2020-04-24 14:46:02 +02:00
commit b1d3d203a9
6 changed files with 2036 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import * as core from '@actions/core';
async function main() {
try {
const version: string | null = core.getInput('version') || null;
// TODO
core.info(`[setup-just] installed just v${version}`);
} catch (err) {
core.setFailed(err.message);
}
}
main();