Merge pull request 'xinwei' (#50) from xinwei into master
Some checks failed
continuous-integration/drone Build is failing

Reviewed-on: #50
This commit is contained in:
root 2024-08-28 11:29:34 +08:00
commit 51138d8a45

View File

@ -93,14 +93,15 @@ steps: # 定义流水线执行步骤,这些步骤将顺序执行
port: 22 # 远程连接端口
command_timeout: 10m # 远程执行命令超时时间
# 设置使用 bash shell
shell: bash
script:
# 导出远程服务器上的 PATH 环境变量
- export PATH=$PATH
- cd /root/ludu-cloud
- git pull origin master
- rm -f ludu-module-datacenter/ludu-module-datacenter-biz/src/main/java/cn/iocoder/yudao/module/datacenter/framework/nacos/config/BeanInit.java
- chmod +x package.sh
- ./package.sh
- mvn package -Dmaven.test.skip=true
- port=48092 # 指定端口号
- pid=$(lsof -t -i:$port) # 获取占用指定端口的进程号
- if [[ -n "$pid" ]]; then