diff --git a/.github/workflows/build_ios.yml b/.github/workflows/build_ios.yml index d23172e3c..44f2ea81a 100644 --- a/.github/workflows/build_ios.yml +++ b/.github/workflows/build_ios.yml @@ -10,6 +10,10 @@ on: description: 'Build CoopCycle production app' required: true type: boolean + build_official_beta: + description: 'Build CoopCycle beta app (TODO: finish setup)' + required: true + type: boolean build_naofood: description: 'Build Naofood app' required: true @@ -31,6 +35,17 @@ jobs: tag: ${{ inputs.tag }} google_service_info_plist_base64: GOOGLE_SERVICE_INFO_PLIST_BASE64 secrets: inherit + coopcycle_beta: + if: ${{ inputs.build_official_beta }} + name: Build CoopCycle beta app + uses: ./.github/workflows/fastlane_ios.yml + with: + tag: ${{ inputs.tag }} + instance: beta + app_name: CoopCycle (Beta) + app_id: org.coopcycle.CoopCycleBeta + google_service_info_plist_base64: GOOGLE_SERVICE_INFO_PLIST_BASE64_BETA + secrets: inherit naofood: if: ${{ inputs.build_naofood }} name: Build Naofood app diff --git a/ios/fastlane/metadata-beta/app_icon.png b/ios/fastlane/metadata-beta/app_icon.png new file mode 100644 index 000000000..4f220ced0 Binary files /dev/null and b/ios/fastlane/metadata-beta/app_icon.png differ