dev1/.woodpecker.yml
Josh 5913a7bcbf
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/manual/woodpecker Pipeline was successful
pipline secret injection test v2
2025-07-31 12:59:56 +00:00

15 lines
300 B
YAML

steps:
- name: echo-secret
image: alpine:latest
environment:
STAGING_SSH_KEY: test123
commands:
- |
echo "START SECRET"
echo "$STAGING_SSH_KEY" | wc -c
echo "$STAGING_SSH_KEY" | head -c 64
echo "END SECRET"
when:
event: [push, manual]
branch: [master]