# release-npm Reusable workflow — `release-npm`. ## Inputs | Input | Type | Required | Default | Description | |---|---|---|---|---| | `build-command` | `string` | yes | — | Shell that builds the publishable workspaces before publish. | ## Secrets | Secret | Required | Description | |---|---|---| | `RELEASE_TOKEN` | no | PAT that lets release-please open PRs that re-trigger CI. Falls back to GITHUB_TOKEN. | ## Usage ```yaml jobs: release-please: uses: FSHTech/github-actions/.github/workflows/release-npm.yml@v1 with: build-command: ... secrets: inherit ```