mirror of https://github.com/Syncplay/syncplay
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:
parent
520569ca64
commit
5db8135b20
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue