diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 850ed50..f0f372d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,9 +12,11 @@ jobs: - uses: actions/setup-node@v2 with: node-version: "14" + - name: PNPM + run: npm i -g pnpm - name: Install dependencies - run: yarn install --frozen-lockfile + run: pnpm install --frozen-lockfile - name: Build - run: yarn run dist + run: pnpm run dist env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index edf1063..aeac1dd 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,10 @@ Head to the [release page](https://github.com/cupcakearmy/unpixel/releases) and ## 🛠 Building / Development 1. Clone the repo -2. `yarn install` -3. `yarn dist` to build for all platforms +2. `pnpm install` +3. `pnpm dist` to build for all platforms -Alternatively you can run `yarn build` and the `yarn electron-builder -m` for `macOS`, `-l` fir `linux` or `-w` for `windows`. +Alternatively you can run `pnpm build` and the `pnpm electron-builder -m` for `macOS`, `-l` fir `linux` or `-w` for `windows`. ## 📦 Release