소스 검색

Fastlane renames for Open-iAPS: build lane, scheme and .ipa output name

And updated the fastlane build action lane in build_Open-iAPS.yml

Co-authored-by: bjornoleh <bjorn.haugsgjerd@gmail.com>
Marion Barker 2 년 전
부모
커밋
64803da6cb
2개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 1
      .github/workflows/build_Open-iAPS.yml
  2. 5 5
      fastlane/Fastfile

+ 1 - 1
.github/workflows/build_Open-iAPS.yml

@@ -239,7 +239,7 @@ jobs:
       
       # Build signed Open-iAPS IPA file
       - name: Fastlane Build & Archive
-        run: bundle exec fastlane build_iAPS        
+        run: bundle exec fastlane build_Open-iAPS
         env:
           TEAMID: ${{ secrets.TEAMID }}
           GH_PAT: ${{ secrets.GH_PAT }}

+ 5 - 5
fastlane/Fastfile

@@ -50,8 +50,8 @@ xcconfig = parse_xcconfig_file(xcconfig_path)
 ENV["BUNDLE_ID"] = xcconfig["BUNDLE_IDENTIFIER"]
 
 platform :ios do
-  desc "Build iAPS"
-  lane :build_iAPS do
+  desc "Build Open-iAPS"
+  lane :build_Open-iAPS do
     setup_ci if ENV['CI']
     BUNDLE_ID = ENV["BUNDLE_ID"]
 
@@ -134,8 +134,8 @@ platform :ios do
 
     gym(
       export_method: "app-store",
-      scheme: "FreeAPS X",
-      output_name: "iAPS.ipa",
+      scheme: "Open-iAPS",
+      output_name: "Open-iAPS.ipa",
       configuration: "Release",
       destination: 'generic/platform=iOS',
       buildlog_path: 'buildlog'
@@ -158,7 +158,7 @@ platform :ios do
     upload_to_testflight(
       api_key: api_key,
       skip_submission: false,
-      ipa: "iAPS.ipa",
+      ipa: "Open-iAPS.ipa",
       skip_waiting_for_build_processing: true,
       changelog: git_branch+" "+last_git_commit[:abbreviated_commit_hash],
     )