Browse Source

Remove depth limit from git fetch command

jimsterino98 2 tháng trước cách đây
mục cha
commit
2ef25b2a66
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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)