diff --git a/.gitea/workflows/publish-ray-serve.yaml b/.gitea/workflows/publish-ray-serve.yaml index a2869e0..efe1b34 100644 --- a/.gitea/workflows/publish-ray-serve.yaml +++ b/.gitea/workflows/publish-ray-serve.yaml @@ -63,10 +63,15 @@ jobs: env: TWINE_USERNAME: ${{ secrets.REGISTRY_USER }} TWINE_PASSWORD: ${{ secrets.REGISTRY_TOKEN }} + # Disable SSL verification for internal self-signed cert + CURL_CA_BUNDLE: "" run: | cd ray-serve # Use internal registry URL to bypass Cloudflare 100MB limit - twine upload --repository-url https://registry.lab.daviestechlabs.io/api/packages/daviestechlabs/pypi \ + # --disable-certificate-verification for self-signed internal cert + twine upload \ + --disable-certificate-verification \ + --repository-url https://registry.lab.daviestechlabs.io/api/packages/daviestechlabs/pypi \ dist/* - name: Notify on success