From 5db8135b20ff7f15b1fcec3dd75b6654c4f04104 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Wr=C3=B3bel?= Date: Mon, 8 Mar 2021 22:01:34 +0100 Subject: [PATCH] Separate debian package artifacts Make it so that server and full packages are separate artifacts in CI rather than single zip containing both. --- .github/workflows/build.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6dbe846..60f1610 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -178,9 +178,16 @@ jobs: mv /tmp/syncplay-server.deb dist_actions/syncplay-server_${VER}.deb ls -al dist_actions - - name: Deploy + - name: Deploy full deb uses: actions/upload-artifact@v2 with: name: syncplay.deb path: | - dist_actions/syncplay*.deb + dist_actions/syncplay_${VER}.deb + + - name: Deploy server deb + uses: actions/upload-artifact@v2 + with: + name: syncplay.deb + path: | + dist_actions/syncplay-server_${VER}.deb