From d699a9b49c1c2e72a495f5cfff5ec21614f1a379 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Fri, 19 Jan 2024 14:12:15 -0600 Subject: [PATCH] ci: Set default branch name The `buildContainerImage2` function assumes the default branch name is *main*, but it's *master* for this repository. If this is not correct, the `latest` tag will not be updated in the container registry. --- ci/Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index a6c873d..806212e 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -3,4 +3,5 @@ buildContainerImage2( archlist: ['amd64', 'arm64'], pi: false, + defaultBranch: 'master', )