feat: Migrate Android deployment from Jenkins and Fastlane to Gitea Actions workflow.
Some checks failed
Deploy Android to Play Store / build-and-deploy (push) Failing after 4m10s

This commit is contained in:
Van Leemput Dayron
2025-12-08 18:04:42 +01:00
parent 9734532491
commit 73db84896a
4 changed files with 61 additions and 86 deletions

View File

@@ -1,16 +0,0 @@
default_platform(:android)
platform :android do
desc "Deploy to Internal Testing"
lane :deploy_internal do
# Build de l'application
sh "cd ../.. && flutter build appbundle --release"
# Upload vers Google Play
upload_to_play_store(
track: 'internal', # 'internal' = Test interne, 'alpha' = Test fermé
aab: '../build/app/outputs/bundle/release/app-release.aab',
json_key: ENV['GOOGLE_JSON_KEY_PATH'] # Jenkins remplit cette variable magiquement
)
end
end