瀏覽代碼

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)