From 02c0995d266488192eafbb7b0a6a3380d15a045d Mon Sep 17 00:00:00 2001 From: bnair123 Date: Sat, 27 Dec 2025 19:05:20 +0400 Subject: [PATCH] Fix CI/CD: use public git.thefetagroup.com URL --- .gitea/workflows/ci-cd.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci-cd.yaml b/.gitea/workflows/ci-cd.yaml index 8176565..e50323c 100644 --- a/.gitea/workflows/ci-cd.yaml +++ b/.gitea/workflows/ci-cd.yaml @@ -10,8 +10,8 @@ on: env: REGISTRY: gitea.thefetagroup.com IMAGE_NAME: bnair/cryptobot - # Internal Docker network URL for git operations - GITEA_INTERNAL_URL: http://gitea:3000 + # Gitea URL for git operations + GITEA_URL: https://git.thefetagroup.com jobs: test: @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout code run: | - git clone --depth 1 ${{ env.GITEA_INTERNAL_URL }}/bnair/CryptoTrading.git . + git clone --depth 1 ${{ env.GITEA_URL }}/bnair/CryptoTrading.git . git fetch origin ${{ github.sha }} --depth 1 git checkout ${{ github.sha }} @@ -61,7 +61,7 @@ jobs: steps: - name: Checkout code run: | - git clone --depth 1 ${{ env.GITEA_INTERNAL_URL }}/bnair/CryptoTrading.git . + git clone --depth 1 ${{ env.GITEA_URL }}/bnair/CryptoTrading.git . git fetch origin ${{ github.ref_name }} --depth 1 git checkout ${{ github.ref_name }}