@riseonly/sdk 0.1.0 → 0.1.1-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -2
  2. package/package.json +6 -1
package/README.md CHANGED
@@ -151,10 +151,15 @@ const bot = new RiseonlyBot(token, {
151
151
 
152
152
  ## Release channels
153
153
 
154
- - `latest` production releases from `main` after merge with `deploy` label
155
- - `next` — staging prereleases from `staging` branch
154
+ CI bumps versions automatically via `publish-prod.yml`:
155
+
156
+ - push to `staging` → prerelease bump → publish `next` (OIDC)
157
+ - merge to `main` with `deploy` label → patch bump → publish `latest` (OIDC)
158
+
159
+ Manual dispatch is also available from GitHub Actions.
156
160
 
157
161
  ```bash
162
+ npm install @riseonly/sdk
158
163
  npm install @riseonly/sdk@next
159
164
  ```
160
165
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riseonly/sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.1-next.0",
4
4
  "description": "Official Riseonly Bot API SDK for Node.js",
5
5
  "keywords": [
6
6
  "riseonly",
@@ -44,6 +44,11 @@
44
44
  "engines": {
45
45
  "node": ">=18"
46
46
  },
47
+ "publishConfig": {
48
+ "access": "public",
49
+ "registry": "https://registry.npmjs.org",
50
+ "provenance": true
51
+ },
47
52
  "scripts": {
48
53
  "build": "tsup",
49
54
  "dev": "tsup --watch",