Compare commits

...

4 Commits

Author SHA1 Message Date
fdee807dda chore: simplify npm-publish workflow
All checks were successful
Deploy to Production / deploy (push) Successful in 4s
2026-03-03 09:56:41 +00:00
0041f18eab diag: add npm whoami to troubleshoot authentication
All checks were successful
Deploy to Production / deploy (push) Successful in 5s
2026-03-03 09:45:39 +00:00
60490cd2a1 fix: use local .npmrc and add token presence check
All checks were successful
Deploy to Production / deploy (push) Successful in 4s
2026-03-03 09:42:25 +00:00
9aa9edf87f fix: manual npmrc configuration to resolve auth issues in workflow
All checks were successful
Deploy to Production / deploy (push) Successful in 5s
2026-03-03 09:37:55 +00:00

View File

@@ -17,6 +17,10 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build
- run: npm publish --access public
- name: Publish to npm
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}