ollama-agent-router 0.1.0 → 0.1.3
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.
- package/README.md +2 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -319,7 +319,7 @@ Configure npm Trusted Publishing for the package:
|
|
|
319
319
|
- Organization or user: `ExeconOne`
|
|
320
320
|
- Repository: `ollama-agent-router`
|
|
321
321
|
- Workflow filename: `release.yml`
|
|
322
|
-
- Environment name:
|
|
322
|
+
- Environment name: leave blank
|
|
323
323
|
|
|
324
324
|
Required repository secrets:
|
|
325
325
|
|
|
@@ -330,6 +330,7 @@ Required repository secrets:
|
|
|
330
330
|
GitHub Pages must be enabled with source set to GitHub Actions.
|
|
331
331
|
The APT repository is always signed; releases fail if `APT_GPG_PRIVATE_KEY` is not configured.
|
|
332
332
|
The release workflow runs npm on Node.js 24 because npm Trusted Publishing requires npm CLI 11.5.1+ and Node.js 22.14.0+.
|
|
333
|
+
The release workflow has its own verify job; npm, GitHub Release, APT, and Homebrew publishing only run after typecheck, tests, build, package dry-run, and Homebrew formula syntax checks pass.
|
|
333
334
|
|
|
334
335
|
Release flow:
|
|
335
336
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ollama-agent-router",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Intelligent OpenAI-compatible router for Ollama with model selection, GPU/CPU-aware queues, async jobs, and CLI configuration.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"lint": "tsc --noEmit",
|
|
56
56
|
"typecheck": "tsc --noEmit",
|
|
57
57
|
"start": "node dist/cli.js serve",
|
|
58
|
-
"package:deb": "npm run build && npm prune --omit=dev && nfpm
|
|
58
|
+
"package:deb": "npm run build && npm prune --omit=dev && nfpm pkg --config packaging/nfpm.yaml --packager deb --target .",
|
|
59
59
|
"prepublishOnly": "npm run typecheck && npm test && npm run build"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|