|
|
|
@ -496,6 +496,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
|
exports.run = void 0;
|
|
|
|
|
const os = __importStar(__webpack_require__(87));
|
|
|
|
|
const core = __importStar(__webpack_require__(186));
|
|
|
|
|
const context_1 = __webpack_require__(842);
|
|
|
|
@ -505,19 +506,19 @@ function run() {
|
|
|
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
|
|
|
try {
|
|
|
|
|
if (os.platform() !== 'linux') {
|
|
|
|
|
core.setFailed('Only supported on linux platform');
|
|
|
|
|
return;
|
|
|
|
|
throw new Error('Only supported on linux platform');
|
|
|
|
|
}
|
|
|
|
|
let inputs = yield context_1.getInputs();
|
|
|
|
|
stateHelper.setRegistry(inputs.registry);
|
|
|
|
|
stateHelper.setLogout(inputs.logout);
|
|
|
|
|
yield docker.login(inputs.registry, inputs.username, inputs.password);
|
|
|
|
|
const { registry, username, password, logout } = context_1.getInputs();
|
|
|
|
|
stateHelper.setRegistry(registry);
|
|
|
|
|
stateHelper.setLogout(logout);
|
|
|
|
|
yield docker.login(registry, username, password);
|
|
|
|
|
}
|
|
|
|
|
catch (error) {
|
|
|
|
|
core.setFailed(error.message);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
exports.run = run;
|
|
|
|
|
function logout() {
|
|
|
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
|
|
|
if (!stateHelper.logout) {
|
|
|
|
@ -3640,27 +3641,16 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
|
|
__setModuleDefault(result, mod);
|
|
|
|
|
return result;
|
|
|
|
|
};
|
|
|
|
|
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 });
|
|
|
|
|
exports.getInputs = void 0;
|
|
|
|
|
const core = __importStar(__webpack_require__(186));
|
|
|
|
|
function getInputs() {
|
|
|
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
|
|
|
return {
|
|
|
|
|
registry: core.getInput('registry'),
|
|
|
|
|
username: core.getInput('username'),
|
|
|
|
|
password: core.getInput('password', { required: true }),
|
|
|
|
|
logout: core.getInput('logout')
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
return {
|
|
|
|
|
registry: core.getInput('registry'),
|
|
|
|
|
username: core.getInput('username', { required: true }),
|
|
|
|
|
password: core.getInput('password', { required: true }),
|
|
|
|
|
logout: core.getInput('logout')
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
exports.getInputs = getInputs;
|
|
|
|
|
//# sourceMappingURL=context.js.map
|
|
|
|
|