add drone test pipeline
Some checks failed
continuous-integration/drone/push Build encountered an error
continuous-integration/drone Build encountered an error

This commit is contained in:
2025-11-04 20:37:17 +01:00
parent 270d538b4f
commit cc5d6e0df0

17
.drone.yml Normal file
View File

@@ -0,0 +1,17 @@
kind: pipeline
type: docker
name: secret-test
steps:
- name: show-env
image: alpine:3.19
environment:
TEST_VAR: HelloWorld
SECRET_VAR:
from_secret: test_secret
commands:
- echo "==== ENVIRONMENT TEST ===="
- echo "Normal var: $TEST_VAR"
- echo "Secret var: $SECRET_VAR"
- echo "All envs (filtered):"
- env | grep -E "TEST_|SECRET_|DRONE_"