Skip to content

Commit

Permalink
Merge pull request #129 from olmps/release-workflow
Browse files Browse the repository at this point in the history
Updates Android & iOS release lanes to distribute beta build to external users
  • Loading branch information
ggirotto authored Jul 22, 2021
2 parents c5b43b4 + 3283c70 commit 2396dd0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ a beta or production release, they must be documented here).

## [Unreleased]

## Updated
- Android & iOS Fastfiles to automatically distribute uploaded builds to external testers.

## [0.1.0] - 2021-07-16

## Added
Expand Down
1 change: 1 addition & 0 deletions android/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ platform :android do
skip_upload_images: true,
skip_upload_screenshots: true,
skip_upload_apk: true,
skip_upload_metadata: true,
version_name: version_info["version_name"],
version_code: android_get_version_code(),
aab: "../build/app/outputs/bundle/release/app-release.aab",
Expand Down
1 change: 1 addition & 0 deletions android/fastlane/metadata/android/pt-BR/changelogs/5.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Primeira versão do Memo!
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Correções de bugs e melhorias
4 changes: 3 additions & 1 deletion ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,10 @@ platform :ios do

upload_to_testflight(
api_key: api_key,
skip_waiting_for_build_processing: true,
distribute_external: true,
groups: [
'External Testers'
],
changelog: changelog,
ipa: '../build/ios/ipa/Memo.ipa'
)
Expand Down

0 comments on commit 2396dd0

Please sign in to comment.