github-pages-deploy-action/lib/main.js

35 lines
1.4 KiB
JavaScript
Raw Normal View History

"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
2020-01-20 05:16:28 +08:00
const core_1 = require("@actions/core");
const git_1 = require("./git");
/** Initializes and runs the action. */
2020-01-20 05:16:28 +08:00
function main() {
return __awaiter(this, void 0, void 0, function* () {
try {
yield git_1.init();
yield git_1.deploy();
}
catch (error) {
2020-01-20 05:16:28 +08:00
/* istanbul ignore next */
console.log("The deployment encountered an error. ❌");
2020-01-20 05:16:28 +08:00
/* istanbul ignore next */
core_1.setFailed(error);
}
finally {
console.log("Completed Deployment ✅");
}
});
2020-01-20 05:16:28 +08:00
}
exports.default = main;
// Init
main();