From 646d13ae223ace852f45264e68bc6f4a83474067 Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Thu, 13 Feb 2020 16:47:09 +0700 Subject: [PATCH] updated yml --- .github/workflows/electron-dev.yml | 4 ++-- .github/workflows/electron-sandbox.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/electron-dev.yml b/.github/workflows/electron-dev.yml index 8f1f581..55dd956 100644 --- a/.github/workflows/electron-dev.yml +++ b/.github/workflows/electron-dev.yml @@ -33,12 +33,12 @@ jobs: if: matrix.os != 'windows-latest' run: | mkdir artifacts - mv "dist/(*.exe,*.deb,*.AppImage,*.dmg)" artifacts || true + cp -R "dist/(*.exe,*.deb,*.AppImage,*.dmg)" artifacts || true - name: Cleanup artifacts Windowns for Dev if: matrix.os == 'windows-latest' run: | mkdir artifacts - mv dist/*.exe artifacts + cp -R dist/*.exe artifacts - name: Upload artifacts uses: actions/upload-artifact@v1 with: diff --git a/.github/workflows/electron-sandbox.yml b/.github/workflows/electron-sandbox.yml index 55d16e0..e0a245d 100644 --- a/.github/workflows/electron-sandbox.yml +++ b/.github/workflows/electron-sandbox.yml @@ -33,12 +33,12 @@ jobs: if: matrix.os != 'windows-latest' run: | mkdir artifacts - mv "dist/(*.exe,*.deb,*.AppImage,*.dmg)" artifacts || true + mv -r dist/*.deb artifacts || true - name: Cleanup artifacts Windowns if: matrix.os == 'windows-latest' run: | mkdir artifacts - mv dist/*.exe artifacts + mv -r dist/*.exe artifacts - name: Upload artifacts uses: actions/upload-artifact@v1 with: