diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2025-12-02 21:28:27 +0100 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-12-02 21:28:27 +0100 |
| commit | 0e729be7340b5e7c8d1c055523b6a338bdaa0d07 (patch) | |
| tree | 01a2ebbfcf2baa52ed04504520666b612babb6be /test/asset/run/dependencies.yaml | |
| parent | 3dd105c0a3f7034a97de667d370ed4e7ee15bbe2 (diff) | |
Diffstat (limited to 'test/asset/run/dependencies.yaml')
| -rw-r--r-- | test/asset/run/dependencies.yaml | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/test/asset/run/dependencies.yaml b/test/asset/run/dependencies.yaml index 7452b5a..13d5e63 100644 --- a/test/asset/run/dependencies.yaml +++ b/test/asset/run/dependencies.yaml @@ -1,3 +1,5 @@ +repo other: + job first: shell: - touch x @@ -29,6 +31,11 @@ job third: job fourth: + checkout: + - dest: a + - repo: other + dest: b + uses: - second.out @@ -40,16 +47,16 @@ job fourth: job fifth: - uses: - - third.out - - fourth.out + uses: + - third.out + - fourth.out - shell: - - mv z z2 - - mv w w2 + shell: + - mv z z2 + - mv w w2 - artifact out1: - path: z2 + artifact out1: + path: z2 - artifact out2: - path: w2 + artifact out2: + path: w2 |