fix: configure clone plugin with lfs disabled

Use woodpeckerci/plugin-git with lfs: false setting instead of
skipping clone entirely.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Barry Walker
2026-01-13 14:46:28 -05:00
parent 5cd4ef8401
commit 31e6529bbe
2 changed files with 12 additions and 16 deletions
+5 -8
View File
@@ -2,20 +2,17 @@
when:
- event: pull_request
skip_clone: true
clone:
- name: clone
image: woodpeckerci/plugin-git
settings:
lfs: false
steps:
- name: clone
image: alpine/git
commands:
- git clone --depth=1 ${CI_REPO_CLONE_URL} .
- git checkout ${CI_COMMIT_SHA}
- name: restore
image: mcr.microsoft.com/dotnet/sdk:10.0-preview
commands:
- dotnet restore
depends_on: [clone]
- name: build
image: mcr.microsoft.com/dotnet/sdk:10.0-preview