2020-08-15 08:45:36 -04:00
|
|
|
import * as core from '@actions/core';
|
2021-04-27 18:34:26 -04:00
|
|
|
import * as context from './context';
|
2020-08-20 10:40:33 -04:00
|
|
|
import * as docker from './docker';
|
2020-08-15 08:45:36 -04:00
|
|
|
import * as stateHelper from './state-helper';
|
|
|
|
|
2020-10-09 06:30:45 -04:00
|
|
|
export async function run(): Promise<void> {
|
2020-08-15 08:45:36 -04:00
|
|
|
try {
|
2021-12-20 04:59:11 -05:00
|
|
|
const input: context.Inputs = context.getInputs();
|
|
|
|
stateHelper.setRegistry(input.registry);
|
|
|
|
stateHelper.setLogout(input.logout);
|
|
|
|
await docker.login(input.registry, input.username, input.password, input.ecr);
|
2022-03-21 05:57:36 -04:00
|
|
|
} catch (error) {
|
2020-08-15 08:45:36 -04:00
|
|
|
core.setFailed(error.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function logout(): Promise<void> {
|
|
|
|
if (!stateHelper.logout) {
|
|
|
|
return;
|
|
|
|
}
|
2020-08-20 10:40:33 -04:00
|
|
|
await docker.logout(stateHelper.registry);
|
2020-08-15 08:45:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!stateHelper.IsPost) {
|
|
|
|
run();
|
|
|
|
} else {
|
|
|
|
logout();
|
|
|
|
}
|