From c6b0bbc7943e820a59999ca605e2be57de650971 Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Thu, 13 Feb 2020 16:48:27 +0700 Subject: [PATCH] updated dirg --- .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 55dd956..f92749b 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 - cp -R "dist/(*.exe,*.deb,*.AppImage,*.dmg)" artifacts || true + cp -R "dist/dev/(*.exe,*.deb,*.AppImage,*.dmg)" artifacts || true - name: Cleanup artifacts Windowns for Dev if: matrix.os == 'windows-latest' run: | mkdir artifacts - cp -R dist/*.exe artifacts + cp -R dist/dev/*.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 e0a245d..650ebf1 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 -r dist/*.deb artifacts || true + mv -r dist/sandbox/*.deb artifacts || true - name: Cleanup artifacts Windowns if: matrix.os == 'windows-latest' run: | mkdir artifacts - mv -r dist/*.exe artifacts + mv -r dist/sandbox/*.exe artifacts - name: Upload artifacts uses: actions/upload-artifact@v1 with: