2
0
Fork 0
mirror of https://code.forgejo.org/docker/login-action.git synced 2025-09-15 18:57:12 +00:00

update to node 16

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2022-02-28 08:28:55 +01:00
parent 6af3c118c8
commit 4b59a429db
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
17 changed files with 2541 additions and 56040 deletions

View file

@ -9,7 +9,7 @@ export async function run(): Promise<void> {
stateHelper.setRegistry(input.registry);
stateHelper.setLogout(input.logout);
await docker.login(input.registry, input.username, input.password, input.ecr);
} catch (error) {
} catch (error: any) {
core.setFailed(error.message);
}
}