@aiyiran/myclaw 1.0.78 → 1.0.80
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/package.json +1 -1
- package/publish.sh +2 -1
package/package.json
CHANGED
package/publish.sh
CHANGED
|
@@ -27,4 +27,5 @@ echo "☁️ 推送代码和版本 Tag 到 GitHub..."
|
|
|
27
27
|
git push origin main || echo "⚠️ Git 推送失败 (网络问题),但不影响 npm 发布!请后续手动检查。"
|
|
28
28
|
git push origin --tags || true
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
VERSION=$(node -p "require('./package.json').version")
|
|
31
|
+
echo "🎉 发布流执行完成!当前发布 NPM 版本号:v${VERSION}"
|