From 002d25f952cedb9738377295e88aa0fd3d4ebb25 Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Thu, 14 Apr 2022 12:52:22 +0200 Subject: [PATCH] Update README.md with shortcuts to create tags needed to trigger a release --- fastlane/metadata/android/README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/fastlane/metadata/android/README.md b/fastlane/metadata/android/README.md index fb7b62fa..46cc7441 100644 --- a/fastlane/metadata/android/README.md +++ b/fastlane/metadata/android/README.md @@ -1,6 +1,5 @@ # Dry-run release before uploading - * Increase build nr in pubspec.yaml * `flutter build appbundle --release` * `bundle exec fastlane android test_configuration` (needs the different keys available) @@ -8,8 +7,13 @@ It might be necessary to repeat these steps if upload_to_play_store returns any errors such as a missing title or similar. - - # Accepted language codes -https://support.google.com/googleplay/android-developer/answer/9844778?hl=en#zippy=%2Cview-list-of-available-languages \ No newline at end of file +https://support.google.com/googleplay/android-developer/answer/9844778?hl=en#zippy=%2Cview-list-of-available-languages + +# Push tags to trigger release + +Set the vX.Y.Z tag here, push it and delete it, since it gets re-created by github actions +to just X.Y.Z + +`TAG=vX.Y.Z && git tag $TAG && git push origin $TAG && git tag -d $TAG` \ No newline at end of file