1
0
Fork 0
mirror of https://github.com/docker/build-push-action.git synced 2025-05-06 21:49:33 +02:00

correct warning log line (#22)

This commit is contained in:
Aayush Shah 2024-11-18 11:36:53 -05:00 committed by GitHub
parent daa8a63bfa
commit 0488127ec0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -312,7 +312,7 @@ async function getBuilderAddr(inputs: context.Inputs, dockerfilePath: string): P
if (error.name === 'AbortError') {
return null;
}
core.warning(`Error in getRemoteBuilderAddr: ${(error as Error).message}`);
core.warning(`Error in getBuilderAddr: ${(error as Error).message}`);
throw error;
}