From 7ae3fdab532b5cdce2e641b22156f8ca00795f4a Mon Sep 17 00:00:00 2001 From: Romein van Buren Date: Sat, 3 Jun 2023 17:59:17 +0200 Subject: [PATCH] CI: create comprehensive artifact containing all builds --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b42529..06b20ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -86,3 +86,25 @@ jobs: with: name: rolens-${{ matrix.platform }} path: releases/* + + bundle: + name: Bundle artifacts + needs: build + runs-on: ubuntu-22.04 + + steps: + - name: Download artifacts + uses: actions/download-artifact@v3 + with: + path: artifacts + + - name: Place all tarballs in the same directory + run: | + mkdir bundle + mv artifacts/* bundle + + - name: Upload the bundle as an artifact + uses: actions/upload-artifact@v3 + with: + name: rolens-bundle + path: bundle