Bumped to version 2.26.0 and added Chat notify

This commit is contained in:
Jonathan Ervine 2020-08-26 14:37:37 +08:00
parent dd58ed1246
commit a7b468a88f
2 changed files with 5 additions and 2 deletions

View File

@ -6,7 +6,7 @@ LABEL maintainer="Jonathan Ervine <docker@ervine.org>"
ENV LANG='en_US.UTF-8' \
LANGUAGE='en_US.UTF-8' \
TERM='xterm' \
VERSION='2.25.0' \
VERSION='2.26.0' \
HYDRA_USER='hydra' \
HYDRA_UID='1003' \
HYDRA_GID='1003'

5
Jenkinsfile vendored
View File

@ -28,9 +28,12 @@ spec:
stage('Build with Kaniko') {
git url: 'ssh://git@git.ervine.org/jonny/x86_64-debian-nzbhydra.git', credentialsId: 'jenkins-to-git'
container('kaniko') {
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/debian/nzbhydra2:v2.25.0 --destination=harbor.ervine.dev/public/x86_64/debian/nzbhydra2:v2.25'
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/debian/nzbhydra2:v2.26.0 --destination=harbor.ervine.dev/public/x86_64/debian/nzbhydra2:v2.26'
}
}
}
}
stage('Notify gchat') {
hangoutsNotify message: "NZBhydra 2.26.0 on Debian application has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false
}