From cde750f76d0e7f586ca6545436f0ca927d25cd41 Mon Sep 17 00:00:00 2001 From: Ben Reedy Date: Sun, 27 Feb 2022 16:22:32 +1000 Subject: [PATCH] Replace invalid tag characters for master images Signed-off-by: Ben Reedy --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7178a6e..cc599beb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -144,6 +144,8 @@ jobs: goversioninfo.exe -ver-major $VersionParts[0] -ver-minor $VersionParts[1] -ver-patch $VersionParts[2] -product-version $Version -platform-specific make crossbuild + # '+' symbols are invalid characters in image tags + (Get-Content -Path VERSION) -replace '\+', '_' | Set-Content -Path VERSION make build-all # GH requires all files to have different names, so add version/arch to differentiate foreach($Arch in "amd64","386") {