From 2ca681cdf9888e1635f00f65399c29f4b65721e4 Mon Sep 17 00:00:00 2001 From: Manuel Aranda Date: Fri, 5 Sep 2025 12:17:01 +0200 Subject: [PATCH] updated changelog --- CHANGELOG.md | 9 +++++++++ Jenkins/Jenkinsfile-deb-pkg | 15 ++++++++++++++- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71f6c1f..b18f13f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,13 @@ # Changelog +## [0.22.2] - 2025-09-05 +### Improved +- Se ha mejorado la UX en el asistente de ejecurcion de scripts. + +### Fixed +- Se ha corregido en el particionador, el que el tamaƱo de las particiones EFI no esten fijas a 512 cuando ya haya datos almacenados. +- Se ha corregido un bug que hacia que no pasara los clientes seleccionados en el asistente de script, y en las tareas programadas. + +--- ## [0.22.1] - 2025-09-05 ### Improved - Se ha mejorado la experiencia de usuario con el despleable de "tipos de particion" en el asistente de particonado. diff --git a/Jenkins/Jenkinsfile-deb-pkg b/Jenkins/Jenkinsfile-deb-pkg index 394bc73..ad33e30 100644 --- a/Jenkins/Jenkinsfile-deb-pkg +++ b/Jenkins/Jenkinsfile-deb-pkg @@ -99,8 +99,21 @@ pipeline { } } post { + success { + script { + // Solo lanzar cuando el build sea exitoso y en la rama main + if (env.BRANCH_NAME == 'main') { + build job: 'Aptly publish nightly repository', + wait: false, + parameters: [ + string(name: 'TRIGGERED_BY', value: "${env.JOB_NAME}-${env.BUILD_NUMBER}") + ] + } + } + + } always { - notifyBuildStatus('narenas@qindel.com') + notifyBuildStatus('opengnsys@qindel.com') } } }