Skip to content

Commit

Permalink
ci: fix pnpm in release-please action
Browse files Browse the repository at this point in the history
  • Loading branch information
justintaddei committed Sep 11, 2024
1 parent e154243 commit be808ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
# these if statements ensure that a publication only occurs when
# a new release is created:
if: ${{ steps.release.outputs.release_created }}
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
cache: "pnpm"
if: ${{ steps.release.outputs.release_created }}
- uses: pnpm/action-setup@v4
with:
version: 9
- run: pnpm install --frozen-lockfile
if: ${{ steps.release.outputs.release_created }}
- run: npm publish
Expand Down

0 comments on commit be808ec

Please sign in to comment.