Add lib files

This commit is contained in:
Danny McCormick
2019-06-21 10:20:05 -04:00
parent 211f0312b0
commit 0981176b25
2 changed files with 6 additions and 19 deletions

View File

@@ -17,6 +17,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
Object.defineProperty(exports, "__esModule", { value: true });
const core = __importStar(require("@actions/core"));
const installer = __importStar(require("./installer"));
const path = __importStar(require("path"));
function run() {
return __awaiter(this, void 0, void 0, function* () {
try {
@@ -30,7 +31,8 @@ function run() {
yield dotnetInstaller.installDotnet();
}
// TODO: setup proxy from runner proxy config
// TODO: problem matchers registered
const matchersPath = path.join(__dirname, '..', '.github');
console.log(`##[add-matcher]${path.join(matchersPath, 'csc.json')}`);
}
catch (error) {
core.setFailed(error.message);