forked from SpectralOps/setup-teller-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
38 lines (29 loc) · 776 Bytes
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
const process = require("process");
const core = require("@actions/core");
const { install } = require("./src/install.js");
function exit(message) {
core.setFailed(message);
process.exit();
}
async function main() {
try {
const ver = core.getInput("teller-version");
if (ver === null) {
exit("The passed version is not valid.");
}
const version = { version: ver }
if (version === null) {
exit("Could not resolve a version for the given range.");
}
core.info(
`Going to install version ${version.version}.`,
);
await install(version);
core.setOutput("teller-version", version.version);
core.info("Installation complete.");
} catch (err) {
core.setFailed(err);
process.exit();
}
}
main();