diff options
author | Christian Breunig <christian@breunig.cc> | 2023-09-25 20:24:09 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-09-25 20:36:56 +0200 |
commit | 1746109255d3d4cdde3540f8eb099adddccd2468 (patch) | |
tree | 3c516b70c45ff7a9a91c38c0936d753483a81f9f /vars | |
parent | a6043c57aee4cd69fa38f52f7b6119efb8e55eca (diff) | |
download | vyos-build-1746109255d3d4cdde3540f8eb099adddccd2468.tar.gz vyos-build-1746109255d3d4cdde3540f8eb099adddccd2468.zip |
ci/cd: update branch references current -> sagitta
Diffstat (limited to 'vars')
-rw-r--r-- | vars/buildPackage.groovy | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vars/buildPackage.groovy b/vars/buildPackage.groovy index 9e1ba1db..f000043f 100644 --- a/vars/buildPackage.groovy +++ b/vars/buildPackage.groovy @@ -1,5 +1,5 @@ #!/usr/bin/env groovy -// Copyright (C) 2020-2021 VyOS maintainers and contributors +// Copyright (C) 2020-2023 VyOS maintainers and contributors // // This program is free software; you can redistribute it and/or modify // in order to easy exprort images built to "external" world @@ -56,7 +56,7 @@ def call(description=null, pkgList=null, buildCmd=null, buildArm=false, changesP if (isPullRequest()) branchName = env.CHANGE_TARGET.toLowerCase() if (branchName.equals('master')) - branchName = 'current' + branchName = 'sagitta' env.DOCKER_IMAGE = 'vyos/vyos-build:' + branchName @@ -170,7 +170,7 @@ def call(description=null, pkgList=null, buildCmd=null, buildArm=false, changesP // every option over and over again! def RELEASE = getGitBranchName() if (getGitBranchName() == "master") - RELEASE = 'current' + RELEASE = 'sagitta' def VYOS_REPO_PATH = '/home/sentrium/web/dev.packages.vyos.net/public_html/repositories/' + RELEASE if (getGitBranchName() == "crux") |