Skip to content

Commit 73281eb

Browse files
committed
chore: update npm installation step in deploy workflow
1 parent a7c56a0 commit 73281eb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/deploy-lib.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,16 @@ jobs:
2222
node-version: '22.x'
2323
registry-url: 'https://registry.npmjs.org'
2424

25+
- name: Update npm
26+
run: npm install -g npm@latest
27+
2528
- name: Install dependencies and build
2629
working-directory: 'libs/contract'
2730
run: npm i && npm run prepublish
2831

2932
- name: Publish package on NPM
3033
working-directory: 'libs/contract'
31-
run: npm publish --provenance --access public
34+
run: npm publish
3235

3336
# - name: Install HashedSet dependencies and build
3437
# working-directory: 'libs/hashed-set'

0 commit comments

Comments
 (0)