mirror of
https://github.com/docker/build-push-action.git
synced 2026-07-01 20:41:39 +00:00
fix ProxyConfig type when checking length
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
f326a08c61
commit
5111a9d30c
@ -39,7 +39,7 @@ actionsToolkit.run(
|
|||||||
await core.group(`Proxy configuration found`, async () => {
|
await core.group(`Proxy configuration found`, async () => {
|
||||||
for (const host in dockerConfig.proxies) {
|
for (const host in dockerConfig.proxies) {
|
||||||
let prefix = '';
|
let prefix = '';
|
||||||
if (dockerConfig.proxies.length > 1) {
|
if (Object.keys(dockerConfig.proxies).length > 1) {
|
||||||
prefix = ' ';
|
prefix = ' ';
|
||||||
core.info(host);
|
core.info(host);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user