18 lines
355 B
YAML
18 lines
355 B
YAML
kind: pipeline
|
|
type: kubernetes
|
|
name: cicd-pipeline
|
|
|
|
steps:
|
|
- name: all-tmp
|
|
image: ubuntu
|
|
environment:
|
|
SSH_PRIV:
|
|
from_secret: ssh-priv
|
|
SSH_PUB:
|
|
from_secret: ssh-pub
|
|
commands:
|
|
- cd "GCryptLib/doxygen"
|
|
- eval "$(ssh-agent -s)"
|
|
- echo $SSH_PUB > foo.txt
|
|
- cat foo.txt
|