From 1943a77992fc33aba209764f61a4e61d6d9da571 Mon Sep 17 00:00:00 2001 From: "Billy D." Date: Mon, 2 Feb 2026 11:19:33 -0500 Subject: [PATCH] ci: use internal registry URL for PyPI uploads (ADR-0020) [ray-serve only] Bypass Cloudflare 100MB limit by using registry.lab.daviestechlabs.io --- .gitea/workflows/publish-ray-serve.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/publish-ray-serve.yaml b/.gitea/workflows/publish-ray-serve.yaml index f79e472..a2869e0 100644 --- a/.gitea/workflows/publish-ray-serve.yaml +++ b/.gitea/workflows/publish-ray-serve.yaml @@ -65,7 +65,8 @@ jobs: TWINE_PASSWORD: ${{ secrets.REGISTRY_TOKEN }} run: | cd ray-serve - twine upload --repository-url https://git.daviestechlabs.io/api/packages/daviestechlabs/pypi \ + # Use internal registry URL to bypass Cloudflare 100MB limit + twine upload --repository-url https://registry.lab.daviestechlabs.io/api/packages/daviestechlabs/pypi \ dist/* - name: Notify on success