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: