Merge remote-tracking branch 'origin/master'
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 6m44s
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 6m44s
This commit is contained in:
commit
4e91acbe37
@ -18,14 +18,14 @@ jobs:
|
||||
- name: cp
|
||||
run: copy ./ruoyi-modules/Property/target/Property.jar C:\devtool\server
|
||||
- name: kill
|
||||
run: cmd /c for /f "tokens=5" %a in ('netstat -ano ^| findstr ":10001" ^| findstr "LISTENING"') do @taskkill /F /PID %a >nul 2>nul
|
||||
run: Get-NetTCPConnection -LocalPort 10001 -State Listening -ErrorAction SilentlyContinue | ForEach-Object -Process { Stop-Process -Id $_.OwningProcess -Force -ErrorAction SilentlyContinue }
|
||||
- name: run
|
||||
run: java -jar C:\devtool\server\Property.jar
|
||||
|
||||
|
||||
# - copy ./ruoyi-modules/Property/target/Property.jar C:\devtool\server
|
||||
# - pwd
|
||||
# - java -jar ./docker/jar/Property.jar
|
||||
|
||||
|
||||
# - name: cd
|
||||
# run: cd ruoyi-modules/Property
|
||||
# - name: Build with Maven
|
||||
@ -41,7 +41,7 @@ jobs:
|
||||
# # 等待注册中心启动
|
||||
# sleep 30
|
||||
|
||||
|
||||
|
||||
# done
|
||||
|
||||
# 保持工作流运行,避免服务被终止
|
||||
|
Loading…
Reference in New Issue
Block a user