Skip to content

Commit 13df977

Browse files
committed
fix(workflows/docker_images): Fix name of repo
Name of repo will be invalid and use caller(who initiated workflow) name. Signed-off-by: Denys Fedoryshchenko <[email protected]>
1 parent f4ecf53 commit 13df977

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docker_images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
pipeline_rev=$(git show --pretty=format:%H -s origin/${{ env.USER_GIT_BRANCH }})
141141
cd ../kernelci-core
142142
rev_arg="--build-arg core_rev=$core_rev --build-arg api_rev=$api_rev --build-arg pipeline_rev=$pipeline_rev"
143-
kci_arg="build --push $rev_arg --prefix=ghcr.io/${{ github.actor }}/"
143+
kci_arg="build --push $rev_arg --prefix=ghcr.io/kernelci/"
144144
./kci docker $kci_arg ${{ matrix.kcicmd }}
145145
- name: build base kernelci docker image for other branches
146146
if: ${{ env.USER_GIT_BRANCH != 'main' }}
@@ -153,5 +153,5 @@ jobs:
153153
pipeline_rev=$(git show --pretty=format:%H -s origin/${{ env.USER_GIT_BRANCH }})
154154
cd ../kernelci-core
155155
rev_arg="--build-arg core_rev=$core_rev --build-arg api_rev=$api_rev --build-arg pipeline_rev=$pipeline_rev"
156-
kci_arg="build --push $rev_arg --prefix=ghcr.io/${{ github.actor }}/staging-"
156+
kci_arg="build --push $rev_arg --prefix=ghcr.io/kernelci/staging-"
157157
./kci docker $kci_arg ${{ matrix.kcicmd }}

0 commit comments

Comments
 (0)