2023-09-05 08:52:19 +00:00
|
|
|
Version=0.0.2
|
2023-09-05 06:46:03 +00:00
|
|
|
Branch=main
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#------------- 命令部分 ----------------
|
|
|
|
|
# make publish
|
|
|
|
|
# 发布upm版本, 版本号和分支需要提前配置
|
|
|
|
|
publish:
|
|
|
|
|
git switch ${Branch}
|
|
|
|
|
git tag ${Version}
|
|
|
|
|
git push --tags
|
|
|
|
|
|
|
|
|
|
# make build
|
|
|
|
|
# 更新proto结构, 生成对应的cs类, 需要先安装proto工具并建立系统路径
|
|
|
|
|
build:
|
2023-09-05 08:52:19 +00:00
|
|
|
cd ./Runtime/ServerProto; \
|
2023-09-05 06:46:03 +00:00
|
|
|
protogen messages.proto --csharp_out=../NetworkGen
|