Files
drone_example/.drone.yml
Ondrej Hrachovina fd0b0f8840
All checks were successful
continuous-integration/drone/push Build is passing
testing of example
2024-11-28 17:26:06 +01:00

19 lines
435 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..."
- rm -rf /tmp/* # Example cleanup, adjust based on what needs cleanup
- echo "Cleanup complete!"