Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

- Publishing is handled by GitHub Actions via `.github/workflows/publish.yml`.
- npm publishing uses trusted publishing with GitHub OIDC; no long-lived npm token or PAT is required.
- Do not define package publish scripts in `package.json`; publish to npm only through the GitHub Actions workflow.
- The publish job runs in the `npm-release` GitHub environment.
- `package.json` must include a `repository.url` that exactly matches `https://github.com/ScopeLift/stealth-address-sdk`.
- The npm package's trusted publisher settings must exactly match `ScopeLift/stealth-address-sdk`, workflow `publish.yml`, and environment `npm-release`.
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@
"build": "bun run check && bun tsc",
"watch": "bun test --watch src",
"check": "biome check .",
"fix": "biome check --apply .",
"publish": "bun run build && npm publish --access public"
"fix": "biome check --apply ."
},
"devDependencies": {
"@biomejs/biome": "1.6.4",
Expand Down
Loading