From 539de16df274501165c696c4874243c5f8026588 Mon Sep 17 00:00:00 2001 From: Zoid <108158093+TheZoidMaster@users.noreply.github.com> Date: Tue, 29 Oct 2024 17:28:06 -0500 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bbd75f5f..71e5b018 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,4 @@ -name: Release +name: Release DevBuild permissions: write-all on: @@ -35,7 +35,11 @@ jobs: - name: Run Electron Builder run: | - pnpm electron-builder --${{ matrix.os }} --publish always + if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then + pnpm electron-builder --linux --publish always + else + pnpm electron-builder --win --publish always + fi env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}