diff --git a/.github/workflows/build_desktop.yaml b/.github/workflows/build_desktop.yaml index 597bf7404..e109441d2 100644 --- a/.github/workflows/build_desktop.yaml +++ b/.github/workflows/build_desktop.yaml @@ -18,7 +18,6 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - # os: [ubuntu-latest] steps: - name: Check out Git repository @@ -29,33 +28,20 @@ jobs: with: node-version: '18.17' - - name: use pnpm - uses: pnpm/action-setup@v2 - with: - version: 8 - - - name: Cache pnpm modules - uses: actions/cache@v3 - with: - path: ~/.pnpm-store - key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} - restore-keys: | - ${{ runner.os }}-pnpm- - - - name: Install dependencies - run: pnpm install + - name: Install Dependencies + run: npm install - - name: Build Linux + - name: build-linux if: matrix.os == 'ubuntu-latest' - run: pnpm run build:linux + run: npm run build:linux - - name: Build macOS - # if: matrix.os == 'macos-latest' - run: pnpm run build:mac + - name: build-mac + if: matrix.os == 'macos-latest' + run: npm run build:mac - - name: Build Win - # if: matrix.os == 'windows-latest' - run: pnpm run build:win + - name: build-win + if: matrix.os == 'windows-latest' + run: npm run build:win # - name: release # uses: softprops/action-gh-release@v1