Files
drone_example/.drone.yml
Ondřej Hrachovina 4bb9fa95e7
All checks were successful
continuous-integration/drone/push Build is passing
Update .drone.yml
2024-11-28 17:31:32 +01:00

19 lines
411 B
YAML

---
kind: pipeline
name: hello-world-pipeline
steps:
# Step 1: Run Hello World
- name: hello-world
image: alpine:latest
commands:
- echo "Hello, World! Everything is running fine!"
# Step 2: Cleanup
- name: cleanup
image: alpine:latest
commands:
- echo "Cleaning up any created data..."
# Cleanup temporary files (adjust based on your use case)
- rm -rf /tmp/*