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