소스 검색

Remove depth limit from git fetch command

jimsterino98 2 달 전
부모
커밋
2ef25b2a66
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      .github/actions/ksun/action.yml

+ 1 - 1
.github/actions/ksun/action.yml

@@ -65,7 +65,7 @@ runs:
       run: |
         cd "$COMMON/KernelSU-Next"
         # Fetch dev branch for version info (tags, commits, etc.)
-        git fetch --depth=50 origin dev 2>/dev/null || true
+        git fetch origin dev 2>/dev/null || true
         
         # Extract and export KSU version info from dev branch
         KSU_GIT_VERSION=$(git rev-list --count origin/dev 2>/dev/null)