-
Notifications
You must be signed in to change notification settings - Fork 27
ci: Update release workflow for npm OIDC authentication and bump up node version #273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -29,6 +29,11 @@ | |||||||||||||
| "app.plugin.js", | ||||||||||||||
| "plugin" | ||||||||||||||
| ], | ||||||||||||||
| "publishConfig": { | ||||||||||||||
| "access": "public", | ||||||||||||||
| "provenance": true, | ||||||||||||||
|
||||||||||||||
| "provenance": true, |
Copilot
AI
Jan 15, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The indentation in the publishConfig section uses 8 spaces instead of 2 spaces, which is inconsistent with the rest of the package.json file. This should be corrected to maintain consistent formatting.
| "access": "public", | |
| "provenance": true, | |
| "registry": "https://registry.npmjs.org" | |
| "access": "public", | |
| "provenance": true, | |
| "registry": "https://registry.npmjs.org" |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,6 +1,2 @@ | ||||||
| #!/usr/bin/env bash | ||||||
| : ${1?"NPM Token missing- usage: $0 {MY_NPM_TOKEN}"} | ||||||
|
|
||||||
| touch .npmrc; | ||||||
| echo "//registry.npmjs.org/:_authToken=$1" > .npmrc; | ||||||
| npm publish; | ||||||
| npm publish --provenance --access public | ||||||
|
||||||
| npm publish --provenance --access public | |
| npm publish --provenance |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trailing whitespace on line 68 should be removed for cleaner formatting.