mirror of
https://github.com/actions/download-artifact.git
synced 2025-07-23 15:08:29 +02:00
Update test.yml
This commit is contained in:
parent
dc82478cd4
commit
0a1284fe87
1 changed files with 13 additions and 1 deletions
14
.github/workflows/test.yml
vendored
14
.github/workflows/test.yml
vendored
|
@ -36,6 +36,12 @@ jobs:
|
|||
echo "Lorem ipsum dolor sit amet" > path/to/artifact-A/file-A.txt
|
||||
echo "Hello world from file B" > path/to/artifact-B/file-B.txt
|
||||
|
||||
- name: Upload both art
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: 'Artifacts'
|
||||
path: path/to
|
||||
|
||||
- name: Upload artifact A
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
|
@ -98,7 +104,13 @@ jobs:
|
|||
}
|
||||
shell: pwsh
|
||||
|
||||
|
||||
- name: Download all Artifacts
|
||||
uses: ./
|
||||
with:
|
||||
name: 'Artifacts'
|
||||
path: some/other/pathart
|
||||
|
||||
- run: ls -lR some
|
||||
|
||||
# Test downloading both artifacts at once
|
||||
- name: Download all Artifacts and not ungzipping
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue