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.
This commit is contained in:
Henry Rausch 2023-11-16 23:38:46 +01:00
parent 53bdc596a5
commit 27a0cd494a
No known key found for this signature in database
GPG Key ID: A6BD2929733D78DD

View File

@ -15,8 +15,8 @@ jobs:
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64
run: | run: |
docker build \ docker build \
--tag ghcr.io/cp6/my-idlers:$(echo $GITHUB_SHA | head -c7) \ --tag ghcr.io/hra42/my-idlers-arm64:$(echo $GITHUB_SHA | head -c7) \
--tag ghcr.io/cp6/my-idlers:latest \ --tag ghcr.io/hra42/my-idlers-arm64:latest \
. .
- name: Container registry login - name: Container registry login
run: | run: |