fix: remove registry-url to enable OIDC auth #2
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish npm | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm run test | |
| - run: npm publish -w http-message-sig --access public | |
| continue-on-error: true | |
| - run: npm publish -w jsonwebkey-thumbprint --access public | |
| continue-on-error: true | |
| - run: npm publish -w web-bot-auth --access public | |
| continue-on-error: true |