Skip to content

Commit 1828f19

Browse files
authored
Simplify npm publish step in workflow
Removed npm configuration step and simplified publish command.
1 parent 9317ac4 commit 1828f19

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

.github/workflows/npm-cd-latest.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,5 @@ jobs:
2828
run: yarn install
2929
- run: yarn test
3030
- run: yarn build
31-
- name: Configure npm for OIDC
32-
run: |
33-
npm config set registry https://registry.npmjs.org/
34-
npm config list
35-
- run: npm publish --provenance --access public
31+
- name: Publish to npm with OIDC
32+
run: npm publish --provenance --access public

0 commit comments

Comments
 (0)