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...
|
|
|
|
//
|
|
|
|
const version = core.getInput('version');
|
|
|
|
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();
|