Files
first-test/.drone.yml
Patrick Gniza 0445c2d3b9
All checks were successful
continuous-integration/drone/push Build is passing
test3
2025-11-04 20:40:24 +01:00

16 lines
330 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 "All envs (filtered):"
- env | grep -E "TEST_|SECRET_|DRONE_"