mirror of
https://github.com/bendtherules/opencode-multi-model.git
synced 2026-08-18 21:52:11 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
890749aa9a | ||
|
|
8368cd8015 |
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "opencode-multi-model",
|
||||
"version": "0.0.9",
|
||||
"version": "0.0.8",
|
||||
"description": "Launch multiple AI models in tmux sessions - OpenCode Plugin, CLI, and Project Tool",
|
||||
"type": "module",
|
||||
"main": "./dist/index.js",
|
||||
|
||||
+6
-1
@@ -30,8 +30,13 @@ if [[ "$confirm" != "y" && "$confirm" != "Y" ]]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Publish to npm
|
||||
# Prompt for OTP
|
||||
read -p "Enter npm OTP (leave blank if not using 2FA): " otp
|
||||
if [[ -n "$otp" ]]; then
|
||||
npm publish --otp "$otp"
|
||||
else
|
||||
npm publish
|
||||
fi
|
||||
|
||||
# Push git commits and tags
|
||||
git push && git push --tags
|
||||
|
||||
Reference in New Issue
Block a user