Add git installation to Alpine pipeline
ci/woodpecker/push/woodpecker Pipeline failed Details

- Install git in Alpine container for proper clone operation
- This should fix the clone step that was failing
- Keep the pipeline simple for testing
This commit is contained in:
Automation 2025-08-14 23:30:40 +00:00
parent 20c7c27586
commit e66d5158c9
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,7 @@ steps:
- name: test-syntax - name: test-syntax
image: alpine:latest image: alpine:latest
commands: commands:
- apk add --no-cache git # Install git for Alpine
- echo "=== GameAdm CI Pipeline ===" - echo "=== GameAdm CI Pipeline ==="
- echo "Testing repository structure..." - echo "Testing repository structure..."
- ls -la - ls -la