From c21704e600b7bb10b1dc3bc49e0071974229b12e Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 12 Aug 2023 11:40:18 +0200 Subject: [PATCH] Save artifacts for both the server and the http server github actions. --- .github/workflows/http_server_builds.yml | 12 ++++++++++++ .github/workflows/server_builds.yml | 12 ++++++++++++ 2 files changed, 24 insertions(+) diff --git a/.github/workflows/http_server_builds.yml b/.github/workflows/http_server_builds.yml index dcfbb5915..271183b20 100644 --- a/.github/workflows/http_server_builds.yml +++ b/.github/workflows/http_server_builds.yml @@ -59,3 +59,15 @@ jobs: platform: server target: ${{ matrix.target }} tools: ${{ matrix.tools }} + + - name: Prepare artifact + if: ${{ matrix.artifact }} + run: | + strip bin/pandemonium.* + chmod +x bin/pandemonium.* + + - name: Upload artifact + uses: ./.github/actions/upload-artifact + if: ${{ matrix.artifact }} + with: + name: ${{ matrix.cache-name }} \ No newline at end of file diff --git a/.github/workflows/server_builds.yml b/.github/workflows/server_builds.yml index 8f3a650ee..7ec2581a1 100644 --- a/.github/workflows/server_builds.yml +++ b/.github/workflows/server_builds.yml @@ -59,3 +59,15 @@ jobs: platform: server target: ${{ matrix.target }} tools: ${{ matrix.tools }} + + - name: Prepare artifact + if: ${{ matrix.artifact }} + run: | + strip bin/pandemonium.* + chmod +x bin/pandemonium.* + + - name: Upload artifact + uses: ./.github/actions/upload-artifact + if: ${{ matrix.artifact }} + with: + name: ${{ matrix.cache-name }} \ No newline at end of file