From 0c3dd6b7e2567353dda1d5717b866dae1e4bd75c Mon Sep 17 00:00:00 2001 From: Henry Rausch <44985923+HRA42@users.noreply.github.com> Date: Thu, 16 Nov 2023 23:41:33 +0100 Subject: [PATCH] Update docker image push configuration Changed the repository for pushing the docker image to GHCR from `ghcr.io/cp6/my-idlers` to `ghcr.io/hra42/my-idlers-arm64` in order to align with the updated repository naming convention. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 64947fa..aed5e70 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,5 +25,5 @@ jobs: - name: Push image to GHCR if: github.ref == 'refs/heads/main' run: | - docker push ghcr.io/cp6/my-idlers:$(echo $GITHUB_SHA | head -c7) - docker push ghcr.io/cp6/my-idlers:latest + docker push ghcr.io/hra42/my-idlers-arm64:$(echo $GITHUB_SHA | head -c7) + docker push ghcr.io/hra42/my-idlers-arm64:latest