From b99215f1a49c359d7ad07899edb3a5f59c5197d7 Mon Sep 17 00:00:00 2001 From: chemavx Date: Mon, 13 Apr 2026 16:08:23 +0000 Subject: [PATCH] fix: use internal cluster URL and disable TLS verify for git ops --- .gitea/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 67c6c4a..105ef53 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,7 +9,8 @@ env: REGISTRY: git.chemavx.xyz IMAGE_BOT: git.chemavx.xyz/chemavx/polymarket-bot IMAGE_API: git.chemavx.xyz/chemavx/polymarket-bot-api - K8S_MANIFESTS_REPO: https://chemavx:${{ secrets.CI_TOKEN }}@git.chemavx.xyz/chemavx/k8s-manifests.git + K8S_MANIFESTS_REPO: http://chemavx:${{ secrets.CI_TOKEN }}@gitea.gitea.svc.cluster.local:3000/chemavx/k8s-manifests.git + GIT_SSL_NO_VERIFY: "true" jobs: build-and-push: @@ -17,6 +18,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + ssl-verify: false - name: Set image tag id: tag