From 0a1284fe8734854615046a7375e72a8bdb8bae82 Mon Sep 17 00:00:00 2001 From: Austin Sasko Date: Fri, 18 Mar 2022 17:39:52 -0400 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 83fb496..021afe0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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