Skip to content

Commit

Permalink
Use pnpm and not yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
mayank1513 committed May 6, 2024
1 parent cd5720f commit a182a68
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/manual-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,11 @@ jobs:
run: | # todo - configure to run for branch for which it is triggered
git config --global user.name "mayank1513"
git config --global user.email "[email protected]"
git fetch
git checkout ${{ github.ref_name }}
- name: Grab old package version
id: oldv
run: v=$(node -p -e "require('./lib/package.json').version") && echo "v=$v" >> $GITHUB_OUTPUT
- name: Apply changesets
run: yarn changeset version
run: pnpm changeset version
- name: Grab package version after applying changesets
id: v
run: v=$(node -p -e "require('./lib/package.json').version") && echo "v=$v" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit a182a68

Please sign in to comment.