dev1/.woodpecker.yml
Josh 0b969748a3
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending
pipeline test v4
2025-07-31 12:51:19 +00:00

15 lines
260 B
YAML

kind: pipeline
type: docker
name: secret-diagnostic
steps:
- name: echo-secret
image: alpine:latest
environment:
STAGING_SSH_KEY: ${STAGING_SSH_KEY}
commands:
- |
echo "START SECRET"
echo "${STAGING_SSH_KEY}"
echo "END SECRET"