diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-01-04 07:12:03 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-01-04 07:12:28 +0100 |
commit | 7c1799f72fd656f98f0c913214ddd0762db31643 (patch) | |
tree | 57e764360485f213c8e2b8a1a6b99e03eb29199b /Jenkinsfile | |
parent | 6338c523dae57ece9f355b625a178f6011e74ebb (diff) | |
download | vyos-build-7c1799f72fd656f98f0c913214ddd0762db31643.tar.gz vyos-build-7c1799f72fd656f98f0c913214ddd0762db31643.zip |
Jenkins: change ISO version name from 1.3-beta to 1.3-stable
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 83b8b0f9..ce9ec8cb 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.3-beta-' + env.BASE_VERSION = '1.3-stable-' } } } |