From b205f935b3c7fbbf1b52ba96fce9b0acea91c2b7 Mon Sep 17 00:00:00 2001 From: SrGooglo Date: Tue, 2 Apr 2024 22:24:11 +0200 Subject: [PATCH] update release workflow --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a50fa82..85bd493 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,4 @@ -name: Build/release Electron app +name: Build & Release GUI on: push: @@ -23,19 +23,19 @@ jobs: node-version: 16 - name: Install Dependencies - run: npm install + run: npm install -f - name: build-linux if: matrix.os == 'ubuntu-latest' - run: npm run build:linux + run: cd ./packages/gui && npm run build:linux - name: build-mac if: matrix.os == 'macos-latest' - run: npm run build:mac + run: cd ./packages/gui && npm run build:mac - name: build-win if: matrix.os == 'windows-latest' - run: npm run build:win + run: cd ./packages/gui && npm run build:win - name: release uses: softprops/action-gh-release@v1