From 27a0cd494ae5496d5e1807014dc8c08e7820b221 Mon Sep 17 00:00:00 2001 From: Henry Rausch <44985923+HRA42@users.noreply.github.com> Date: Thu, 16 Nov 2023 23:38:46 +0100 Subject: [PATCH] Update tags in GitHub Actions workflow This commit updates the tags in the GitHub Actions workflow for building Docker images. The previous tags `ghcr.io/cp6/my-idlers` are replaced with `ghcr.io/hra42/my-idlers-arm64`. This change ensures that the correct tags are used for the Docker image. --- .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 a3aacc2..64947fa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,8 +15,8 @@ jobs: platforms: linux/amd64,linux/arm64 run: | docker build \ - --tag ghcr.io/cp6/my-idlers:$(echo $GITHUB_SHA | head -c7) \ - --tag ghcr.io/cp6/my-idlers:latest \ + --tag ghcr.io/hra42/my-idlers-arm64:$(echo $GITHUB_SHA | head -c7) \ + --tag ghcr.io/hra42/my-idlers-arm64:latest \ . - name: Container registry login run: |