From 513f5c870bb63e39aac5f2f43f946aef96122ba3 Mon Sep 17 00:00:00 2001 From: pythonicrahul Date: Sat, 17 Feb 2024 16:19:53 +0530 Subject: [PATCH] updated workflow --- .github/workflows/build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 71ac039..761cbf8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -27,8 +27,8 @@ jobs: - name: Build Electron App for Windows run: electron-builder build --windows --publish never - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 + - name: Upload Artifact + uses: actions/upload-artifact@v2 with: - github_token: ${{ secrets.GH_TOKEN }} - publish_dir: ./dist + name: windows-executable # Specify the name for the artifact + path: ./dist/* # Specify the path to the built executable or files