Skip to content

Commit

Permalink
fix: add install pnpm workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
Brokyeom committed Sep 13, 2024
1 parent 0723d92 commit 68269a8
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,12 @@ jobs:
with:
node-version: 18

- name: Install pnpm
run: |
npm install -g pnpm
- name: Install Dependencies
run: yarn install
run: pnpm install

- name: Configure npm
run: |
Expand All @@ -36,8 +40,8 @@ jobs:
id: changesets
uses: changesets/action@v1
with:
version: yarn changeset version
publish: yarn publish-packages
version: pnpm changeset version
publish: pnpm publish-packages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 68269a8

Please sign in to comment.