Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
YumNumm committed Apr 16, 2024
1 parent ae1cba8 commit 2f63fc5
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 10 deletions.
12 changes: 6 additions & 6 deletions app/ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1165;
CURRENT_PROJECT_VERSION = 1166;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM;
ENABLE_BITCODE = NO;
Expand Down Expand Up @@ -562,7 +562,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1165;
CURRENT_PROJECT_VERSION = 1166;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM;
ENABLE_USER_SCRIPT_SANDBOXING = YES;
Expand Down Expand Up @@ -605,7 +605,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1165;
CURRENT_PROJECT_VERSION = 1166;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM;
ENABLE_USER_SCRIPT_SANDBOXING = YES;
Expand Down Expand Up @@ -647,7 +647,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1165;
CURRENT_PROJECT_VERSION = 1166;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM;
ENABLE_USER_SCRIPT_SANDBOXING = YES;
Expand Down Expand Up @@ -792,7 +792,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1165;
CURRENT_PROJECT_VERSION = 1166;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM;
ENABLE_BITCODE = NO;
Expand Down Expand Up @@ -825,7 +825,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1165;
CURRENT_PROJECT_VERSION = 1166;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM;
ENABLE_BITCODE = NO;
Expand Down
2 changes: 1 addition & 1 deletion app/ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1165</string>
<string>1166</string>
<key>LSRequiresIPhoneOS</key>
<true />
<key>UIApplicationSupportsIndirectInputEvents</key>
Expand Down
3 changes: 2 additions & 1 deletion app/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ platform :ios do
)

match(
readonly: true,
type: "appstore",
readonly: is_ci,
)

# Build the project
Expand Down
8 changes: 8 additions & 0 deletions app/ios/fastlane/Matchfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
git_url("[email protected]:YumNumm/EQMonitor_secret.git")

storage_mode("git")

type("appstore") # The default type, can be: appstore, adhoc, enterprise or development

app_identifier(["net.yumnumm.eqmonitor", "net.yumnumm.eqmonitor.FcmServiceExtension"])
username("[email protected]") # Your Apple Developer Portal username
10 changes: 8 additions & 2 deletions app/ios/fastlane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,19 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do

Increment the build number

### ios beta
### ios download_provisioning_profiles

```sh
[bundle exec] fastlane ios beta
[bundle exec] fastlane ios download_provisioning_profiles
```

Download the provisioning profiles

### ios beta

```sh
[bundle exec] fastlane ios beta
```

Push a new beta build to TestFlight

Expand Down

0 comments on commit 2f63fc5

Please sign in to comment.