Skip to content

Commit

Permalink
remove android setup action
Browse files Browse the repository at this point in the history
  • Loading branch information
ivojawer committed Mar 13, 2022
1 parent 29fcae9 commit d394203
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,9 @@ jobs:
with:
distribution: 'zulu'
java-version: '8'
- name: Setup Android SDK
uses: android-actions/setup-android@v2
- name: Distribute app to Google Play's internal track 🚀
working-directory: ./android/fastlane
run: bundle exec fastlane deploy --debug
run: bundle exec fastlane deploy
- name: Commit
run: |
git config --local user.name "github-actions[bot]"
Expand Down
2 changes: 1 addition & 1 deletion android/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ platform :android do
gradle_file_path: "app/build.gradle"
)

gradle(tasks: ["clean","bundleRelease"])
gradle(tasks: ["clean", "bundleRelease"])
upload_to_play_store(track: 'internal')
end
end

0 comments on commit d394203

Please sign in to comment.