Skip to content

Commit 04ad817

Browse files
committed
fix(pkg): match repository owner casing (etherCorps) for provenance
npm provenance validation is case-sensitive on the repo owner. package.json resolved to 'ethercorps' but GitHub Actions provenance reports 'etherCorps', causing E422 on publish.
1 parent 58c0dfa commit 04ad817

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "module",
66
"packageManager": "pnpm@10.30.3",
77
"license": "MIT",
8-
"repository": "github:ethercorps/sveltekit-og",
8+
"repository": "github:etherCorps/sveltekit-og",
99
"scripts": {
1010
"dev": "pnpm -F @ethercorps/sveltekit-og dev",
1111
"build": "pnpm -F @ethercorps/sveltekit-og build",

packages/sveltekit-og/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "4.3.0",
44
"license": "MIT",
55
"homepage": "https://sveltekit-og.dev",
6-
"repository": "github:ethercorps/sveltekit-og",
6+
"repository": "github:etherCorps/sveltekit-og",
77
"funding": "https://github.com/sponsors/ethercorps",
88
"author": "Shivam Meena <https://github.com/theetherGit>",
99
"description": "Dynamically generate Open Graph images from an HTML, CSS template or Svelte component using fast and efficient conversion from HTML > SVG > PNG",

0 commit comments

Comments
 (0)