diff options
author | Christian Breunig <christian@breunig.cc> | 2024-03-23 19:49:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-23 19:49:35 +0100 |
commit | 9560a65ddd5a4e17951736be95b024f9a9dae495 (patch) | |
tree | e742e3fccb8910b6859424b58fd7b216181479c6 | |
parent | 69322b5367e4b94ba834d7a3b205f31f1bf02b54 (diff) | |
download | vyos-build-9560a65ddd5a4e17951736be95b024f9a9dae495.tar.gz vyos-build-9560a65ddd5a4e17951736be95b024f9a9dae495.zip |
Jenkins: rename base ISO from rolling to stable
-rw-r--r-- | Jenkinsfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index f820600e..1a7da869 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -38,7 +38,7 @@ node('Docker') { env.USR_ID = sh(returnStdout: true, script: 'id -u').toString().trim() env.GRP_ID = sh(returnStdout: true, script: 'id -g').toString().trim() env.DOCKER_ARGS = '--privileged --sysctl net.ipv6.conf.lo.disable_ipv6=0 -e GOSU_UID=' + env.USR_ID + ' -e GOSU_GID=' + env.GRP_ID - env.BASE_VERSION = '1.4-rolling-' + env.BASE_VERSION = '1.4-stable-' } } } |