From 16e46300be76d43e592a3f49c20b6b522b24437c Mon Sep 17 00:00:00 2001 From: Jan Prochazka Date: Sun, 15 Mar 2020 22:10:48 +0100 Subject: [PATCH] fixed copy artifacts --- .github/workflows/build-app.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-app.yaml b/.github/workflows/build-app.yaml index 5ae32cc89..b725683e2 100644 --- a/.github/workflows/build-app.yaml +++ b/.github/workflows/build-app.yaml @@ -34,12 +34,14 @@ jobs: run: | yarn run build:app - - name: Cleanup artifacts + - name: Copy artifacts Linux, MacOs if: matrix.os != 'windows-2016' run: | mkdir artifacts - mv "app/dist/(*.exe,*.deb,*.AppImage,*.dmg)" artifacts || true - - name: Cleanup artifacts Win + mv app/dist/*.deb artifacts || true + mv app/dist/*.AppImage artifacts || true + mv app/dist/*.dmg artifacts || true + - name: Copy artifacts Win if: matrix.os == 'windows-2016' run: | mkdir artifacts