From 4cb9e7d1464285bbf9a9899f8098939810f76dd5 Mon Sep 17 00:00:00 2001 From: 4831c0 <4831c0@noreply.localhost> Date: Mon, 11 Aug 2025 10:04:08 +0200 Subject: [PATCH] Jenkinsfile: automatically update flutter checkout --- Jenkinsfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 16fd319df9..bc6d237346 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,6 +5,18 @@ pipeline { } stages { + stage('Update flutter checkout') { + steps { + script { + sh '''#!/bin/sh + set -xe + cd /home/jenkins/development/flutter + git pull + ''' + } + } + } + stage('Build release') { steps { script {