From 112dc5e06defe42a89f00c98e5d8ec7d3d138382 Mon Sep 17 00:00:00 2001 From: git Date: Tue, 2 Apr 2024 14:59:12 +0000 Subject: [PATCH] 'update files with ansible' --- Containerfile | 2 +- Jenkinsfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index cc27f8c..18688e6 100644 --- a/Containerfile +++ b/Containerfile @@ -16,7 +16,7 @@ RUN dnf update -y && \ update-ca-trust && \ dnf clean all -RUN curl -sLo sonarr.tar.gz https://github.com/Sonarr/Sonarr/releases/download/v4.0.2.1183/Sonarr.main.4.0.2.1183.linux-x64.tar.gz && \ +RUN curl -sLo sonarr.tar.gz https://github.com/Sonarr/Sonarr/releases/download/v4.0.3.1413/Sonarr.main.4.0.3.1413.linux-x64.tar.gz && \ sleep 30 && \ tar zxvf sonarr.tar.gz && \ rm -rf sonarr.tar.gz && \ diff --git a/Jenkinsfile b/Jenkinsfile index 80284f5..814df09 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,11 +28,11 @@ spec: stage('Build with Kaniko') { git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-sonarr', credentialsId: 'jenkins2git' container('kaniko') { - sh '/kaniko/executor --force -f `pwd`/Containerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/ubi/sonarr:v4.0.2.1183' + sh '/kaniko/executor --force -f `pwd`/Containerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/ubi/sonarr:v4.0.3.1413' } } stage('Notify gchat') { - googlechatnotification (url: 'https://chat.googleapis.com/v1/spaces/AAAA-nNKzdA/messages?key=AIzaSyDdI0hCZtE6vySjMm-WEfRq3CPzqKqqsHI&token=FySO2Zy2wfNJ7QKoqT9zy0uzNJF8bwj74ansor3BTu0%3D', message: "Sonarr 4.0.2.1183 on RHEL UBI has built") + googlechatnotification (url: 'https://chat.googleapis.com/v1/spaces/AAAA-nNKzdA/messages?key=AIzaSyDdI0hCZtE6vySjMm-WEfRq3CPzqKqqsHI&token=FySO2Zy2wfNJ7QKoqT9zy0uzNJF8bwj74ansor3BTu0%3D', message: "Sonarr 4.0.3.1413 on RHEL UBI has built") } } }