setup-go/src/setup-go.ts

29 lines
745 B
TypeScript
Raw Normal View History

2019-06-19 13:44:17 +00:00
import * as core from '@actions/core';
2019-06-20 17:51:56 +00:00
import * as installer from './installer';
import * as path from 'path';
2019-06-19 13:44:17 +00:00
async function run() {
try {
//
// Version is optional. If supplied, install / use from the tool cache
// If not supplied then task is still used to setup proxy, auth, etc...
//
2019-08-13 20:31:11 +00:00
let version = core.getInput('version');
if (!version) {
version = core.getInput('go-version');
}
2019-06-19 13:44:17 +00:00
if (version) {
2019-06-20 17:51:56 +00:00
await installer.getGo(version);
2019-06-19 13:44:17 +00:00
}
// TODO: setup proxy from runner proxy config
2019-06-20 17:51:56 +00:00
const matchersPath = path.join(__dirname, '..', '.github');
console.log(`##[add-matcher]${path.join(matchersPath, 'go.json')}`);
2019-06-19 13:44:17 +00:00
} catch (error) {
core.setFailed(error.message);
}
}
run();