2020-08-20 22:40:33 +08:00
|
|
|
import * as exec from '@actions/exec';
|
|
|
|
import * as core from '@actions/core';
|
2020-08-21 20:45:16 +08:00
|
|
|
import * as aws from './aws';
|
2020-08-20 22:40:33 +08:00
|
|
|
import * as execm from './exec';
|
|
|
|
|
|
|
|
export async function login(registry: string, username: string, password: string): Promise<void> {
|
2020-08-21 20:45:16 +08:00
|
|
|
if (await aws.isECR(registry)) {
|
2020-08-20 22:40:33 +08:00
|
|
|
await loginECR(registry, username, password);
|
|
|
|
} else {
|
|
|
|
await loginStandard(registry, username, password);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function logout(registry: string): Promise<void> {
|
|
|
|
await execm.exec('docker', ['logout', registry], false).then(res => {
|
|
|
|
if (res.stderr != '' && !res.success) {
|
|
|
|
core.warning(res.stderr);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function loginStandard(registry: string, username: string, password: string): Promise<void> {
|
|
|
|
let loginArgs: Array<string> = ['login', '--password', password];
|
|
|
|
if (username) {
|
|
|
|
loginArgs.push('--username', username);
|
|
|
|
}
|
|
|
|
loginArgs.push(registry);
|
|
|
|
|
|
|
|
if (registry) {
|
|
|
|
core.info(`🔑 Logging into ${registry}...`);
|
|
|
|
} else {
|
|
|
|
core.info(`🔑 Logging into DockerHub...`);
|
|
|
|
}
|
|
|
|
await execm.exec('docker', loginArgs, true).then(res => {
|
|
|
|
if (res.stderr != '' && !res.success) {
|
|
|
|
throw new Error(res.stderr);
|
|
|
|
}
|
|
|
|
core.info('🎉 Login Succeeded!');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function loginECR(registry: string, username: string, password: string): Promise<void> {
|
2020-08-21 20:45:16 +08:00
|
|
|
const cliPath = await aws.getCLI();
|
|
|
|
const cliVersion = await aws.getCLIVersion();
|
2020-08-21 21:27:22 +08:00
|
|
|
const region = await aws.getRegion(registry);
|
|
|
|
core.info(`💡 AWS ECR registry detected with ${region} region`);
|
2020-08-21 20:45:16 +08:00
|
|
|
|
2020-08-20 22:40:33 +08:00
|
|
|
process.env.AWS_ACCESS_KEY_ID = username;
|
|
|
|
process.env.AWS_SECRET_ACCESS_KEY = password;
|
2020-08-21 20:56:11 +08:00
|
|
|
|
|
|
|
core.info(`⬇️ Retrieving docker login command through AWS CLI ${cliVersion} (${cliPath})...`);
|
2020-08-21 21:27:22 +08:00
|
|
|
const loginCmd = await aws.getECRLoginCmd(cliVersion, registry, region);
|
|
|
|
|
|
|
|
core.info(`🔑 Logging into ${registry}...`);
|
|
|
|
execm.exec(loginCmd, [], true).then(res => {
|
|
|
|
if (res.stderr != '' && !res.success) {
|
|
|
|
throw new Error(res.stderr);
|
|
|
|
}
|
|
|
|
core.info('🎉 Login Succeeded!');
|
2020-08-20 22:40:33 +08:00
|
|
|
});
|
|
|
|
}
|