login-action/src/main.ts

35 lines
803 B
TypeScript
Raw Normal View History

2020-08-15 12:45:36 +00:00
import * as os from 'os';
import * as core from '@actions/core';
2020-08-20 14:40:33 +00:00
import {getInputs, Inputs} from './context';
import * as docker from './docker';
2020-08-15 12:45:36 +00:00
import * as stateHelper from './state-helper';
async function run(): Promise<void> {
try {
if (os.platform() !== 'linux') {
core.setFailed('Only supported on linux platform');
return;
}
2020-10-08 05:31:05 +00:00
const {registry, username, password, logout} = getInputs();
stateHelper.setRegistry(registry);
stateHelper.setLogout(logout);
await docker.login(registry, username, password);
2020-08-15 12:45:36 +00:00
} catch (error) {
core.setFailed(error.message);
}
}
async function logout(): Promise<void> {
if (!stateHelper.logout) {
return;
}
2020-08-20 14:40:33 +00:00
await docker.logout(stateHelper.registry);
2020-08-15 12:45:36 +00:00
}
if (!stateHelper.IsPost) {
run();
} else {
logout();
}