Separate debian package artifacts

Make it so that server and full packages are separate artifacts in CI rather than single zip containing both.
This commit is contained in:
Daniel Wróbel 2021-03-08 22:01:34 +01:00 committed by GitHub
parent 520569ca64
commit 5db8135b20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 2 deletions

View File

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