We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a485601 commit ac4175cCopy full SHA for ac4175c
.github/workflows/release.yml
@@ -77,7 +77,7 @@ jobs:
77
java-version: '8'
78
- name: Distribute app to Google Play's internal track 🚀
79
working-directory: ./android/fastlane
80
- run: fastlane deploy --debug
+ run: fastlane android deploy
81
- name: Commit
82
run: |
83
git config --local user.name "github-actions[bot]"
android/fastlane/Fastfile
@@ -32,7 +32,7 @@ platform :android do
32
gradle_file_path: "app/build.gradle"
33
)
34
35
- gradle(tasks: ["clean", "bundleRelease"])
+ gradle(tasks: ["clean", "bundleRelease"], flags: "--debug")
36
upload_to_play_store(track: 'internal')
37
end
38
0 commit comments