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