FOERBICO/.woodpecker/woodpecker-workflow-adavanced-test.yaml
Ludger Sicking 428620a98a Komplexität reduzieren
versuche simples Secret als TestCommand
2024-09-04 20:07:52 +02:00

25 lines
583 B
YAML

when:
- event: push
branch: [no-real-branch, feature/working-*]
#https://woodpecker-ci.org/docs/usage/workflow-syntax#when---conditional-execution
steps:
- name: wir-testen-die-umgebung
image: alpine
commands:
- ls ~
- pwd
- ls -la /
- touch /was-duerfen-wir
- who
- uname -a
- id
- groups
- last
- name: going-private
image: debian
commands:
- eval $MYTEST_MYCMD #sind geschachtelte Secrets möglich?
#secrets: [ SECRET_API_TOKEN, mytest_mycmd ]
secrets: [ mytest_mycmd ] #gehts so?