Skip to content

Commit 724bb5c

Browse files
committed
update ios firebase fastlane action
1 parent a811081 commit 724bb5c

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

.github/workflows/build_nightly.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,15 @@ jobs:
7272
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
7373
APPSTORE_API_KEY: ${{ secrets.APPSTORE_API_KEY }}
7474
run: |
75-
flutter build ios --no-codesign
75+
flutter build ios --suppress-analytics --release --no-codesign
7676
cd ios
7777
bundle exec fastlane deploy_to_firebase
7878
7979
build_and_deploy_android:
8080
runs-on: ubuntu-latest
8181
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
8384
steps:
8485
- name: Install Bot SSH Key
8586
uses: webfactory/ssh-agent@v0.9.0

sample_app/ios/fastlane/Fastfile

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,13 @@ end
3535
lane :deploy_to_firebase do
3636
match_me
3737

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',
4745
)
4846

4947
message = changelog_from_git_commits(commits_count: 10)

0 commit comments

Comments
 (0)