Files
platform/publish.ps1

17 lines
475 B
PowerShell
Raw Normal View History

2026-02-27 16:44:31 +08:00
if (-not $args) {
Write-Error "需要指定版本号"
exit 1
}
$confrim = Read-Host "构建版本为 [platform:$($args[0])],是否继续?(y/n)"
if ($confrim -ne "y") {
Write-Host "已取消构建"
exit 0
}
2026-04-02 17:48:59 +08:00
docker build -t repo.lanhuip.com:8554/lanhu/platform:latest .
docker build -t repo.lanhuip.com:8554/lanhu/platform:$($args[0]) .
2026-02-27 16:44:31 +08:00
2026-04-02 17:48:59 +08:00
docker push repo.lanhuip.com:8554/lanhu/platform:latest
docker push repo.lanhuip.com:8554/lanhu/platform:$($args[0])