Jenkinsfile: automatically update flutter checkout

This commit is contained in:
4831c0
2025-08-11 10:04:08 +02:00
parent 2d19673eb6
commit 4cb9e7d146

12
Jenkinsfile vendored
View File

@@ -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 {