From be825dbd3a3a5d28f8d01e09f3b97212d57209be Mon Sep 17 00:00:00 2001 From: ManuGowda Date: Wed, 1 Nov 2023 14:05:31 +0100 Subject: [PATCH] :recycle: Rename and remove env for windows --- .github/workflows/electron-build.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/electron-build.yml b/.github/workflows/electron-build.yml index b5b6427b6c..e6a64ac9c6 100644 --- a/.github/workflows/electron-build.yml +++ b/.github/workflows/electron-build.yml @@ -54,21 +54,13 @@ jobs: if: startsWith(matrix.os, 'desktop-build') run: npm install -g cpx - - name: Build/release Electron app + - name: Build and pack windows app if: startsWith(matrix.os, 'desktop-build') uses: samuelmeuli/action-electron-builder@v1 with: build_script_name: pack:win - env: - # windows cert credentials - windows_certs: ${{ secrets.windows_certs }} - windows_certs_password: ${{ secrets.windows_certs_password }} - # GitHub token, automatically provided to the action - # (No need to define this secret in the repo settings) - github_token: ${{ secrets.github_token }} - - - name: Build/release Electron app + - name: Build and pack mac app if: startsWith(matrix.os, 'macos') uses: samuelmeuli/action-electron-builder@v1 env: @@ -86,4 +78,3 @@ jobs: # GitHub token, automatically provided to the action # (No need to define this secret in the repo settings) github_token: ${{ secrets.github_token }} -