Skip to content

Commit

Permalink
Update artifacts.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherHX authored Oct 28, 2024
1 parent e0aabb4 commit f4cf1c9
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkg/artifacts/testdata/v4/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,29 @@ jobs:
run: |
[[ "$(cat context.txt)" = "$(cat out2/context.txt)" ]] || exit 1
shell: bash

- uses: actions/download-artifact@v4
with:
name: test2
path: out3
- run: cat out3/data.txt

- name: assert 3
run: |
[[ "$(cat data.txt)" = "$(cat out3/data.txt)" ]] || exit 1
shell: bash

- uses: actions/download-artifact@v4
with:
name: "test*"
path: out4
merge-multiple: true

- run: cat out4/data.txt
- run: cat out4/context.txt

- name: assert 4
run: |
[[ "$(cat context.txt)" = "$(cat out4/context.txt)" ]] || exit 1
[[ "$(cat data.txt)" = "$(cat out4/data.txt)" ]] || exit 1
shell: bash

0 comments on commit f4cf1c9

Please sign in to comment.