dev1/.woodpecker.yml
Josh 07e397e121
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending
pipeline test v5
2025-07-31 12:52:42 +00:00

16 lines
315 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 VALUE"
echo "${STAGING_SSH_KEY}" | wc -c
echo "${STAGING_SSH_KEY}" | head -c 64
echo "END SECRET VALUE"