fix ci_registry_password
This commit is contained in:
parent
e51914fbe7
commit
c4e48e687b
46821
dist/index.js
vendored
46821
dist/index.js
vendored
File diff suppressed because one or more lines are too long
@ -4,7 +4,7 @@
|
||||
"description": "",
|
||||
"main": "src/index.js",
|
||||
"scripts": {
|
||||
"bundle": "npm run format:write && npm run package",
|
||||
"bundle": "npm run package",
|
||||
"ci-test": "jest",
|
||||
"format:write": "prettier --write **/*.js",
|
||||
"format:check": "prettier --check **/*.js",
|
||||
|
||||
12
src/lib.js
12
src/lib.js
@ -33,18 +33,14 @@ export function addCiRegistryAuth(ci_registry, registryAuthJson) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (
|
||||
process.env['CI_REGISTRY_PASSWORD'] == null ||
|
||||
process.env['CI_REGISTRY_PASSWORD'].length > 0
|
||||
) {
|
||||
console.log(
|
||||
'WARNING: add_ci_registry_auth enabled but CI_REGISTRY_PASSWORD env is empty'
|
||||
);
|
||||
const argCiRegistryPassword = (core.getInput('ci_registry_password') ?? '').trim();
|
||||
if (argCiRegistryPassword == null || argCiRegistryPassword.length <= 0) {
|
||||
console.log('WARNING: add_ci_registry_auth enabled but ci_registry_password env is empty');
|
||||
return;
|
||||
}
|
||||
|
||||
registryAuthJson.auths[ci_registry] = base64ToBytes(
|
||||
'token:' + process.env['CI_REGISTRY_PASSWORD']
|
||||
'token:' + argCiRegistryPassword
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user