Просмотр исходного кода

limit lane names to letters and underscores

marionbarker 2 лет назад
Родитель
Сommit
1dbb6dd197
2 измененных файлов с 3 добавлено и 2 удалено
  1. 1 1
      .github/workflows/build_Open-iAPS.yml
  2. 2 1
      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_Open-iAPS
+        run: bundle exec fastlane build_open_iaps
         env:
           TEAMID: ${{ secrets.TEAMID }}
           GH_PAT: ${{ secrets.GH_PAT }}

+ 2 - 1
fastlane/Fastfile

@@ -49,9 +49,10 @@ xcconfig = parse_xcconfig_file(xcconfig_path)
 # Access BUNDLE_IDENTIFIER from the xcconfig file after replacing $(DEVELOPMENT_TEAM) with ENV["TEAMID"]
 ENV["BUNDLE_ID"] = xcconfig["BUNDLE_IDENTIFIER"]
 
+# limit lane names to letters and underscores
 platform :ios do
   desc "Build Open-iAPS"
-  lane :build_Open-iAPS do
+  lane :build_open_iaps do
     setup_ci if ENV['CI']
     BUNDLE_ID = ENV["BUNDLE_ID"]