From de6dba6ffaaa04eaf37572802536de440ca22f7b Mon Sep 17 00:00:00 2001 From: aetos Date: Sun, 5 Oct 2025 09:05:18 +0000 Subject: [PATCH] Update .drone.yml --- .drone.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index 124aab8..b087395 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,12 +7,12 @@ platform: os: linux arch: arm64 -# Disable the built-in HTTPS clone, we'll do SSH manually -# clone: -# disable: true - steps: - - name: clone-repo + - name: hello-world image: alpine/git commands: - - git clone git@gitea.aetoskia.com:apps/cicd.git + - echo "=== Successful Deployment ===" + - echo "Latest commit:" + - git rev-parse HEAD + - echo "Latest tag:" + - git describe --tags --abbrev=0 || echo "No tags found"