dev1/.woodpecker.yml
Josh 1873a25f6c
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending
pipline test secret injection v1
2025-07-31 12:58:42 +00:00

19 lines
334 B
YAML

kind: pipeline
type: docker
name: secret-test
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"
echo "END SECRET"
when:
event: [push, manual]
branch: [master]