From 1fc2c20ca463fc6ee2bb674ac6a71ac9d01b2030 Mon Sep 17 00:00:00 2001 From: zontreck Date: Wed, 28 May 2025 14:13:55 -0700 Subject: [PATCH] ci: Remove appbundle from build --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4fbbca8..7185951 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,7 +17,7 @@ pipeline { flutter pub get flutter build linux flutter build apk - flutter build appbundle + #flutter build appbundle ''' dir('build/linux/x64/release/bundle') { @@ -36,7 +36,7 @@ pipeline { success { archiveArtifacts artifacts: 'linux.tgz' archiveArtifacts artifacts: 'pokedex.apk' - archiveArtifacts artifacts: 'pokedex.aab' + //archiveArtifacts artifacts: 'pokedex.aab' cleanWs() }