Commit 4f1ba86
authored
fix: Set 'repository.url' in package.json (#11)
The latest [“Publish to npm” workflow
run](https://github.com/github/ariaNotify-polyfill/actions/runs/13503814665/job/37728589058)
failed with:
> npm error code E422
> npm error 422 Unprocessable Entity - PUT
https://registry.npmjs.org/@github%2farianotify-polyfill - Error
verifying sigstore provenance bundle: Failed to validate repository
information: package.json: "repository.url" is "", expected to match
"https://github.com/github/ariaNotify-polyfill" from provenance
This PR sets `repository.url` to
`"git+https://github.com/github/ariaNotify-polyfill.git"`, similar to
what we use in other repos (where similar publish workflows work).
Notably, that’s different from
`"https://github.com/github/ariaNotify-polyfill"`, the URL mentioned in
the error message above—as a result, this PR may (or may not) fix the
workflow error. If it doesn’t, then updating the value to
`"https://github.com/github/ariaNotify-polyfill"` is the obvious next
step.1 file changed
+4
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
5 | 9 | | |
6 | 10 | | |
7 | 11 | | |
| |||
0 commit comments