From cf9719557a78635c2533a446bb58b0f2d11ca762 Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Fri, 5 Sep 2025 18:42:12 +0200 Subject: [PATCH] test Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- .github/workflows/ci.yml | 9 +++++---- src/main.ts | 1 - 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9a5810..b48ee16 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -301,10 +301,11 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} add: | - - registry: ${{ secrets.GAR_LOCATION }}-docker.pkg.dev - username: _json_key - password: |- - ${{ secrets.GAR_JSON_KEY }} + - username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - registry: public.ecr.aws + username: ${{ secrets.AWS_ACCESS_KEY_ID }} + password: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - registry: registry.gitlab.com username: ${{ secrets.GITLAB_USERNAME }} password: ${{ secrets.GITLAB_TOKEN }} diff --git a/src/main.ts b/src/main.ts index 17f8922..4a0626f 100644 --- a/src/main.ts +++ b/src/main.ts @@ -28,7 +28,6 @@ export async function main(): Promise { } const add = yaml.load(inputs.add) as Auth[]; - core.info(`add: ${JSON.stringify(add, null, 2)}`); if (Array.isArray(add)) { auths.push(...add); }