fixed copy artifacts

This commit is contained in:
Jan Prochazka
2020-03-15 22:10:48 +01:00
parent 73f3d2d62a
commit 16e46300be

View File

@@ -34,12 +34,14 @@ jobs:
run: | run: |
yarn run build:app yarn run build:app
- name: Cleanup artifacts - name: Copy artifacts Linux, MacOs
if: matrix.os != 'windows-2016' if: matrix.os != 'windows-2016'
run: | run: |
mkdir artifacts mkdir artifacts
mv "app/dist/(*.exe,*.deb,*.AppImage,*.dmg)" artifacts || true mv app/dist/*.deb artifacts || true
- name: Cleanup artifacts Win mv app/dist/*.AppImage artifacts || true
mv app/dist/*.dmg artifacts || true
- name: Copy artifacts Win
if: matrix.os == 'windows-2016' if: matrix.os == 'windows-2016'
run: | run: |
mkdir artifacts mkdir artifacts