remove old base64 method

This commit is contained in:
David Hiendl 2023-12-05 10:23:34 +01:00
parent d615a092e1
commit cd19b6d6ae

View File

@ -19,11 +19,6 @@ export function processAdditionalRegistries(targetRegistries) {
}
}
function base64ToBytes(base64) {
const binString = atob(base64);
return Uint8Array.from(binString, (m) => m.codePointAt(0));
}
export function addCiRegistryAuth(ci_registry, registryAuthJson) {
if (!core.getBooleanInput('add_ci_registry_auth')) {
return;