FOERBICO/.woodpecker/woodpecker-workflow-adavanced-test.yaml

26 lines
610 B
YAML
Raw Normal View History

2024-09-04 18:00:37 +00:00
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
2024-09-09 06:02:32 +00:00
- sudo last
- sudo ls /var
2024-09-04 18:00:37 +00:00
- name: going-private
image: debian
commands:
- eval $MYTEST_MYCMD #sind geschachtelte Secrets möglich?
#secrets: [ SECRET_API_TOKEN, mytest_mycmd ]
2024-09-09 06:00:19 +00:00
#secrets: [ mytest_mycmd ] #gehts so?