From b01020dc0ef4659a2b0b0867e35b226c4ca6d10b Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Sun, 7 Nov 2021 07:20:56 -0800 Subject: [PATCH] Removes yarn --- .github/workflows/deploy.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e7da5f8f..7677a326 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -82,9 +82,13 @@ jobs: fetch-depth: 0 - name: Install Node uses: actions/setup-node@v2.4.1 + - name: Install pnpm + uses: pnpm/action-setup@v2.0.1 + with: + version: 6.20.1 - name: Install dependencies - run: yarn + run: pnpm install - name: Release to Github env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: yarn release --github.release --no-increment --no-git --ci + run: pnpm release --github.release --no-increment --no-git --ci