From 57e9a1ab2b7c65595206044a29e9c1fa53831eb9 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Thu, 15 May 2025 20:02:50 -0300 Subject: [PATCH] Checkout repository manually - Updates workflow to clone the repository manually. - Installs git as a prerequisite for cloning. - Uses apt-get to install git. - Clones the repository using git clone. --- .gitea/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 81c5962..d1f438d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -15,8 +15,10 @@ jobs: TERM: dumb DEBIAN_FRONTEND: noninteractive steps: - - name: Checkout code - uses: actions/checkout@v3 + - name: Checkout manually + run: | + apt-get update && apt-get install -y git + git clone https://gitea.example.com/your/repo.git . - name: Install Git run: |