Update .drone.yml
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone Build is failing

This commit is contained in:
2025-10-04 10:42:43 +00:00
parent 17f946d558
commit b7da32174d

View File

@@ -7,19 +7,21 @@ platform:
os: linux os: linux
arch: arm64 arch: arm64
# Optional: control clone step # Disable the built-in HTTPS clone, we'll do SSH manually
clone: clone:
disable: false disable: true
steps: steps:
- name: clone - name: clone-repo
image: drone/git image: alpine/git
# Uses built-in Drone authentication environment:
# Use the mounted SSH key
GIT_SSH_COMMAND: "ssh -i /drone-ssh/id_ed25519 -o StrictHostKeyChecking=accept-new"
commands:
- echo "Cloning repository via SSH..."
- git clone git@gitea.aetoskia.com:apps/cicd.git
steps:
- name: test - name: test
image: alpine image: alpine
environment:
GIT_SSL_NO_VERIFY: "true"
commands: commands:
- echo "pipeline running" - echo "pipeline running"