Skip to content

Commit 910d6f1

Browse files
committed
Fix(docker): Correct Docker image name in workflow
The Docker image name in the build workflow was pointing to a personal repository instead of the official KernelCI repository. This commit corrects the image name to `ghcr.io/kernelci/kernelci-storage`.
1 parent 18e62d8 commit 910d6f1

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/docker.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,5 @@ jobs:
1919
# run: |
2020
# docker buildx build --platform linux/amd64,linux/arm64 -t ghcr.io/nuclearcat/kernelci-storage:latest --push .
2121
run: |
22-
docker buildx build --platform linux/amd64 -t ghcr.io/nuclearcat/kernelci-storage:latest --push .
23-
22+
docker buildx build --platform linux/amd64 -t ghcr.io/kernelci/kernelci-storage:latest --push .
2423

0 commit comments

Comments
 (0)