From ac7fb69bc6ef1cf001d874f8af4d6e85931cdf95 Mon Sep 17 00:00:00 2001 From: claude Date: Mon, 13 Apr 2026 00:54:02 +0200 Subject: [PATCH] ci: revert to git.wylab.me (size limit was the issue, now fixed) --- .github/workflows/build-rocm.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-rocm.yml b/.github/workflows/build-rocm.yml index 3a5a1349e2..b1a22eb7d9 100644 --- a/.github/workflows/build-rocm.yml +++ b/.github/workflows/build-rocm.yml @@ -28,7 +28,7 @@ jobs: - name: Log in to Gitea Container Registry run: | - echo "${{ secrets.REGISTRY_TOKEN }}" | docker login 192.168.1.50:3000 -u wylab --password-stdin + echo "${{ secrets.REGISTRY_TOKEN }}" | docker login git.wylab.me -u wylab --password-stdin - name: Build server-rocm image run: | @@ -36,11 +36,11 @@ jobs: --target server \ --build-arg ROCM_DOCKER_ARCH='gfx1100;gfx1101;gfx1102' \ -f .devops/rocm.Dockerfile \ - -t 192.168.1.50:3000/wylab/llama.cpp:server-rocm-${{ steps.tag.outputs.build_num }} \ - -t 192.168.1.50:3000/wylab/llama.cpp:server-rocm \ + -t git.wylab.me/wylab/llama.cpp:server-rocm-${{ steps.tag.outputs.build_num }} \ + -t git.wylab.me/wylab/llama.cpp:server-rocm \ . - name: Push images run: | - docker push 192.168.1.50:3000/wylab/llama.cpp:server-rocm-${{ steps.tag.outputs.build_num }} - docker push 192.168.1.50:3000/wylab/llama.cpp:server-rocm + docker push git.wylab.me/wylab/llama.cpp:server-rocm-${{ steps.tag.outputs.build_num }} + docker push git.wylab.me/wylab/llama.cpp:server-rocm