Save artifacts for both the server and the http server github actions.

This commit is contained in:
Relintai 2023-08-12 11:40:18 +02:00
parent a0c6731278
commit c21704e600
2 changed files with 24 additions and 0 deletions

View File

@ -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 }}

View File

@ -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 }}