Skip to content

Commit

Permalink
Fix git sanity checks part2
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rken committed Jul 23, 2022
1 parent 8759112 commit 5ad0731
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ default_platform :android

platform :android do
before_all do
ensure_git_status_clean
#ensure_git_status_clean
end

lane :beta do
git_pull
#ensure_git_branch(branch: 'master')
#git_pull
gradle(task: 'clean assembleBeta')
sh "bash ./remove_unsupported_languages.sh"
supply(
Expand All @@ -35,7 +36,8 @@ platform :android do
end

lane :production do
git_pull
#ensure_git_branch(branch: 'master')
#git_pull
gradle(task: 'clean assembleRelease')
sh "bash ./remove_unsupported_languages.sh"
supply(
Expand Down

0 comments on commit 5ad0731

Please sign in to comment.