Files
first-test/.drone.yml
Patrick Gniza cc5d6e0df0
Some checks failed
continuous-integration/drone/push Build encountered an error
continuous-integration/drone Build encountered an error
add drone test pipeline
2025-11-04 20:37:17 +01:00

18 lines
404 B
YAML

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_"