Skip to content

Commit 8ba72f6

Browse files
committed
fix(workflows/docker_images): Fix remaining repository names
Also auth as kernelci using github token. Signed-off-by: Denys Fedoryshchenko <[email protected]>
1 parent 13df977 commit 8ba72f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/docker_images.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ jobs:
6262
cd kernelci-core
6363
export core_rev=$(git rev-parse HEAD)
6464
export core_url=$(git remote get-url origin)
65-
kci_arg="build --push --build-arg core_rev=$core_rev --prefix=ghcr.io/${{ github.actor }}/ --build-arg core_url=$core_url"
65+
kci_arg="build --push --build-arg core_rev=$core_rev --prefix=ghcr.io/kernelci/ --build-arg core_url=$core_url"
6666
./kci docker $kci_arg ${{ matrix.kcicmd }} --arch ${{ matrix.kciarch }}
6767
- name: build base kernelci docker image for other branches
6868
if: ${{ env.USER_GIT_BRANCH != 'main' }}
6969
run: |
7070
cd kernelci-core
7171
export core_rev=$(git rev-parse HEAD)
7272
export core_url=$(git remote get-url origin)
73-
kci_arg="build --push --build-arg core_rev=$core_rev --prefix=ghcr.io/${{ github.actor }}/staging- --build-arg core_url=$core_url"
73+
kci_arg="build --push --build-arg core_rev=$core_rev --prefix=ghcr.io/kernelci/staging- --build-arg core_url=$core_url"
7474
./kci docker $kci_arg ${{ matrix.kcicmd }} --arch ${{ matrix.kciarch }}
7575
7676
docker-misc-build:
@@ -127,7 +127,7 @@ jobs:
127127
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
128128
with:
129129
registry: ghcr.io
130-
username: ${{ github.actor }}
130+
username: kernelci
131131
password: ${{ secrets.GITHUB_TOKEN }}
132132
- name: build base kernelci docker image for main branch
133133
if: ${{ env.USER_GIT_BRANCH == 'main' }}

0 commit comments

Comments
 (0)