Files
first-test/.drone.yml
Patrick Gniza 200d78bd34
Some checks failed
continuous-integration/drone/push Build encountered an error
test2
2025-11-04 20:39:19 +01:00

18 lines
406 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_"