Files
cicd/.drone.yml
aetos de6dba6ffa
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
Update .drone.yml
2025-10-05 09:05:18 +00:00

19 lines
341 B
YAML

---
kind: pipeline
type: docker
name: default
platform:
os: linux
arch: arm64
steps:
- name: hello-world
image: alpine/git
commands:
- echo "=== Successful Deployment ==="
- echo "Latest commit:"
- git rev-parse HEAD
- echo "Latest tag:"
- git describe --tags --abbrev=0 || echo "No tags found"