File tree Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -72,14 +72,15 @@ jobs:
72
72
MATCH_PASSWORD : ${{ secrets.MATCH_PASSWORD }}
73
73
APPSTORE_API_KEY : ${{ secrets.APPSTORE_API_KEY }}
74
74
run : |
75
- flutter build ios --no-codesign
75
+ flutter build ios --suppress-analytics --release -- no-codesign
76
76
cd ios
77
77
bundle exec fastlane deploy_to_firebase
78
78
79
79
build_and_deploy_android :
80
80
runs-on : ubuntu-latest
81
81
timeout-minutes : 15
82
- if : ${{ github.event_name == 'push' || inputs.build_android == true }}
82
+ # if: ${{ github.event_name == 'push' || inputs.build_android == true }}
83
+ if : false
83
84
steps :
84
85
- name : Install Bot SSH Key
85
86
uses : webfactory/ssh-agent@v0.9.0
Original file line number Diff line number Diff line change 35
35
lane :deploy_to_firebase do
36
36
match_me
37
37
38
- gym (
39
- workspace : "./Runner.xcworkspace" ,
40
- scheme : "Runner" ,
41
- export_method : "ad-hoc" ,
42
- export_options : "./fastlane/beta_gym_export_options.plist" ,
43
- silent : true ,
44
- clean : true ,
45
- include_symbols : true ,
46
- output_directory : "./dist"
38
+ build_app (
39
+ scheme : "Runner" ,
40
+ export_method : "ad-hoc" ,
41
+ silent : true ,
42
+ clean : true ,
43
+ include_symbols : true ,
44
+ output_directory : './dist' ,
47
45
)
48
46
49
47
message = changelog_from_git_commits ( commits_count : 10 )
You can’t perform that action at this time.
0 commit comments