Update README.md with shortcuts to create tags needed to trigger a release

This commit is contained in:
Roland Geider
2022-04-14 12:52:22 +02:00
parent 2cacc22918
commit 002d25f952

View File

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