Skip to content

发布新版流程

oneRain edited this page May 19, 2021 · 5 revisions

新建版本分支

  • 如发布 x.y.z 版本,则新建 xyz 分支。
  • 修改 solution 版本号,具体工程继承于此版本号。
  • 修改 Common 工程下的 LCCore.SDKVersion,此版本号影响 Http 请求 UA。
  • 修改 README.md 中 UPM 安装版本号
"dependencies": {
  "com.leancloud.storage": "https://github.com/leancloud/csharp-sdk-upm.git#storage-x.y.z",
  "com.leancloud.realtime": "https://github.com/leancloud/csharp-sdk-upm.git#realtime-x.y.z"
}
  • 合并至 master 分支

触发 CI/CD

  • 新建版本 tag
git tag x.y.z
  • 推送至远程仓库
git push leancloud x.y.z
Clone this wiki locally