From 5ad995275059e750687f053227a6c96b2d4418de Mon Sep 17 00:00:00 2001 From: GMaysa Date: Thu, 2 Jul 2026 17:53:27 +0800 Subject: [PATCH] ci: update checkout step to fetch full history in CI workflow --- .gitea/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 0ccaef6..1ebbddf 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,9 +12,10 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 45 steps: - - name: Setup SSH config for Gitea - run: | - echo -e "Host gitea\n HostName 100.79.174.108\n Port 222\n StrictHostKeyChecking no" >> /etc/ssh/ssh_config + -name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Checkout repository uses: actions/checkout@v4