Skip to content

Commit d8900c1

Browse files
mdjermanovicnzakas
andauthored
chore: add npm install step to release-please workflow (#573)
* chore: add `npm install` step to release-please workflow * Update .github/workflows/release-please.yml Co-authored-by: Nicholas C. Zakas <[email protected]> --------- Co-authored-by: Nicholas C. Zakas <[email protected]>
1 parent 8e73f11 commit d8900c1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release-please.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ jobs:
3535
node-version: lts/*
3636
registry-url: https://registry.npmjs.org
3737
if: ${{ steps.release.outputs.release_created }}
38-
- run: npm publish
38+
- run: |
39+
npm install
40+
npm publish
3941
env:
4042
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4143
if: ${{ steps.release.outputs.release_created }}

0 commit comments

Comments
 (0)