Skip to content

Commit c38f1b3

Browse files
committed
fix ios app icon and ipa naming
1 parent 5c315e3 commit c38f1b3

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/electron-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ jobs:
290290
BUILD_NUMBER="${{ github.run_number }}"
291291
echo "APP_VERSION=$V" >> "$GITHUB_ENV"
292292
echo "BUILD_NUMBER=$BUILD_NUMBER" >> "$GITHUB_ENV"
293-
echo "IPA_NAME=MonkeyCode-${V}-ios-release.ipa" >> "$GITHUB_ENV"
293+
echo "IPA_NAME=MonkeyCode-ios.ipa" >> "$GITHUB_ENV"
294294
node -e "const fs=require('fs');const p='mobile/package.json';const j=JSON.parse(fs.readFileSync(p,'utf8'));j.version=process.argv[1];fs.writeFileSync(p,JSON.stringify(j,null,2)+'\n');" "$V"
295295
perl -0pi -e "s/MARKETING_VERSION = [^;]+;/MARKETING_VERSION = ${V};/g; s/CURRENT_PROJECT_VERSION = [^;]+;/CURRENT_PROJECT_VERSION = ${BUILD_NUMBER};/g" mobile/ios/App/App.xcodeproj/project.pbxproj
296296
-75.9 KB
Loading

mobile/ios/fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ platform :ios do
6262
bundle_id = options[:bundle_id] || ENV.fetch("IOS_BUNDLE_ID", "com.monkeycode.mobile")
6363
profile_name = options[:profile_name] || ENV["IOS_PROFILE_NAME"]
6464
team_id = options[:team_id] || ENV["IOS_TEAM_ID"]
65-
output_name = options[:output_name] || ENV.fetch("IOS_OUTPUT_NAME", "MonkeyCode.ipa")
65+
output_name = options[:output_name] || ENV.fetch("IOS_OUTPUT_NAME", "MonkeyCode-ios.ipa")
6666
sign_identity = options[:sign_identity] || ENV.fetch("IOS_CODE_SIGN_IDENTITY", "Apple Distribution")
6767

6868
UI.user_error!("IOS_PROFILE_NAME is required") if profile_name.to_s.empty?

0 commit comments

Comments
 (0)