Update test.yml

This commit is contained in:
Austin Sasko 2022-03-18 17:39:52 -04:00 committed by GitHub
parent dc82478cd4
commit 0a1284fe87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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