feat: add Docker Hub image script

This commit is contained in:
3252a8
2026-05-26 08:58:09 +03:00
parent 0623850c3f
commit 827d69231c
3 changed files with 49 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
$ErrorActionPreference = "Stop"
if (-not $env:IMAGE_TAG) {
throw "Set IMAGE_TAG to the release tag you want to build and push"
}
$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
$env:IMAGE_REGISTRY = "docker.io"
$env:IMAGE_NAMESPACE = "3252a8"
& (Join-Path $scriptDir "docker-build-images.ps1")
& (Join-Path $scriptDir "docker-push-images.ps1")