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