From e66d5158c9724416167e9b61b0a11b1342226550 Mon Sep 17 00:00:00 2001 From: Automation Date: Thu, 14 Aug 2025 23:30:40 +0000 Subject: [PATCH] Add git installation to Alpine pipeline - Install git in Alpine container for proper clone operation - This should fix the clone step that was failing - Keep the pipeline simple for testing --- .woodpecker.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.woodpecker.yml b/.woodpecker.yml index 8a9085c..0b6f78f 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -2,6 +2,7 @@ steps: - name: test-syntax image: alpine:latest commands: + - apk add --no-cache git # Install git for Alpine - echo "=== GameAdm CI Pipeline ===" - echo "Testing repository structure..." - ls -la