fix(release): 为 fork 预发布设置默认 tag

This commit is contained in:
leeguooooo
2026-03-10 13:57:30 +09:00
parent fcd891e8a9
commit 8aa52d7faa
+4 -1
View File
@@ -27,7 +27,7 @@
"build:windows": "npm run version:sync && docker compose -f docker/docker-compose.yml run --rm build-windows",
"build:all-platforms": "npm run version:sync && (npm run build:linux & npm run build:windows & wait) && npm run build:macos",
"build:docker": "docker build -t agent-browser-builder -f docker/Dockerfile.build .",
"release": "npm run version:sync && npm run build && npm run build:all-platforms && npm run verify:bundled-binaries && npm run verify:native-version && npm publish",
"release": "pnpm run version:sync && pnpm run build && pnpm run build:all-platforms && pnpm run verify:bundled-binaries && pnpm run verify:native-version && pnpm publish",
"start": "node dist/daemon.js",
"dev": "tsx src/daemon.ts",
"typecheck": "tsc --noEmit",
@@ -72,6 +72,9 @@
"type": "git",
"url": "git+https://github.com/leeguooooo/agent-browser.git"
},
"publishConfig": {
"tag": "fork"
},
"bugs": {
"url": "https://github.com/leeguooooo/agent-browser/issues"
},