From aa46313ae6ae4fb68e95e2f83f07ea227305b9f2 Mon Sep 17 00:00:00 2001 From: past-due <30942300+past-due@users.noreply.github.com> Date: Tue, 8 Dec 2020 12:02:55 -0500 Subject: [PATCH] GitHub Actions: Upload artifacts --- .github/workflows/CI.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6fcc87d7..dd5cba41 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -61,3 +61,13 @@ jobs: if: success() && !(matrix.demos-scheme == '') run: | xcodebuild build -workspace Demos/Demos.xcworkspace -scheme "${{ matrix.demos-scheme }}" + + - name: Tar Artifacts + # See: https://github.com/actions/upload-artifact#maintaining-file-permissions-and-case-sensitive-files + run: tar -cvf "${{ matrix.platform }}.tar" Package/Release/ + + - name: Upload Artifacts + uses: actions/upload-artifact@v2 + with: + name: ${{ matrix.platform }} + path: "${{ matrix.platform }}.tar"