fix(ci): publish github package under org scope#4
Conversation
Greptile SummaryThis PR fixes the GitHub Packages mirror scope by updating Confidence Score: 5/5Safe to merge — minimal, targeted one-line change in each workflow file with no logic impact. Both changes are identical single-line string substitutions correcting the GitHub Packages org scope. No logic, permissions, or secrets handling is modified. The CI workflow retains No files require special attention. Important Files Changed
Sequence DiagramsequenceDiagram
participant GH as GitHub Actions
participant NPM as npm Registry (@tummycrypt/*)
participant GHP as GitHub Packages (@tinyland-inc/*)
GH->>NPM: publish (npm_access: public)
Note over NPM: unchanged — @tummycrypt/tinyland-user-resolution
GH->>GHP: publish (github_package_name)
Note over GHP: BEFORE: @tummycrypt/tinyland-user-resolution
Note over GHP: AFTER: @tinyland-inc/tinyland-user-resolution
Reviews (1): Last reviewed commit: "fix(ci): publish github package under or..." | Re-trigger Greptile |
Fixes the GitHub Packages mirror scope from the public npm scope to the GitHub org scope.
The public npm artifact remains under
@tummycrypt/*; this only changes thegithub_package_nameinput used by the reusable publish workflow so GitHub Packages publishes under@tinyland-inc/*.Tracking: TIN-713