From d94f854df9ef7c5261c67beee14dbe72e7186795 Mon Sep 17 00:00:00 2001 From: Marek Rusinowski Date: Fri, 1 Nov 2024 23:23:31 +0100 Subject: [PATCH] Make engine build v2 upload artifacts to GitHub --- .github/workflows/engine-build.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/engine-build.yml b/.github/workflows/engine-build.yml index 8b904d9cfb..cbb04e6257 100644 --- a/.github/workflows/engine-build.yml +++ b/.github/workflows/engine-build.yml @@ -147,15 +147,14 @@ jobs: ./package.sh EOF - # TODO: Commented as this step is at the moment useless because artifacts - # are neither publickly accesible nor used in any next steps so for now - # it's more of an example that needs to be changed to something useful. - # - name: Save - # if: github.event_name != 'pull_request' - # uses: namespace-actions/upload-artifact@v0 - # with: - # name: output-${{ matrix.system }} - # path: ./artifacts + # TODO: Switch to publickly accessible storage + - name: Save + if: github.event_name != 'pull_request' + uses: actions/upload-artifact@v4 + with: + name: artifacts-${{ matrix.system }} + path: ./artifacts + compression-level: 0 # already compressed - name: Unmount bazel remote overlay if: always() && steps.mount-overlay.outcome == 'success' run: |