2021-10-01 18:20:03 +00:00
|
|
|
name: beta
|
2021-09-27 17:33:22 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
#branches:
|
|
|
|
# - master
|
2021-10-05 09:24:55 +00:00
|
|
|
# - stable
|
2021-09-27 17:33:22 +00:00
|
|
|
tags:
|
|
|
|
- 'v*-b*'
|
|
|
|
#tags-ignore:
|
|
|
|
# - 'v*-*'
|
|
|
|
|
|
|
|
env:
|
|
|
|
APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }}
|
|
|
|
APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }}
|
|
|
|
APP_STORE_CONNECT_API_KEY_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }}
|
|
|
|
FASTLANE_USERNAME: ${{ secrets.FASTLANE_USERNAME }}
|
|
|
|
FASTLANE_PASSWORD: ${{ secrets.FASTLANE_PASSWORD }}
|
|
|
|
|
|
|
|
jobs:
|
2021-10-05 09:24:55 +00:00
|
|
|
upload_to_app_store:
|
2021-09-27 17:33:22 +00:00
|
|
|
runs-on: macos-10.15
|
|
|
|
timeout-minutes: 60
|
2021-10-05 09:24:55 +00:00
|
|
|
env:
|
|
|
|
MATCH_USERNAME: ${{ secrets.MATCH_USERNAME }}
|
|
|
|
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
|
|
|
|
MATCH_GIT_URL: ${{ secrets.MATCH_GIT_URL }}
|
|
|
|
MATCH_GIT_PRIVATE_KEY: ${{ secrets.MATCH_GIT_PRIVATE_KEY }}
|
|
|
|
MATCH_KEYCHAIN_NAME: ${{ secrets.MATCH_KEYCHAIN_NAME }}
|
|
|
|
MATCH_KEYCHAIN_PASSWORD: ${{ secrets.MATCH_KEYCHAIN_PASSWORD }}
|
|
|
|
DELIVER_USERNAME: ${{ secrets.DELIVER_USERNAME }}
|
2021-09-27 17:33:22 +00:00
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0 # for proper build number
|
|
|
|
submodules: true
|
|
|
|
- name: Prepare Ruby bundle
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
|
|
|
bundler-cache: true
|
|
|
|
- name: Select Xcode version
|
|
|
|
uses: maxim-lobanov/setup-xcode@v1
|
|
|
|
with:
|
|
|
|
xcode-version: latest-stable
|
|
|
|
- name: Cache CocoaPods
|
2021-10-05 17:47:08 +00:00
|
|
|
uses: actions/cache@v2
|
2021-09-27 17:33:22 +00:00
|
|
|
with:
|
2021-10-05 17:47:08 +00:00
|
|
|
path: |
|
|
|
|
Pods
|
2021-09-27 17:33:22 +00:00
|
|
|
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pods-
|
|
|
|
- name: Prepare for fastlane match
|
|
|
|
run: |
|
2021-10-05 08:55:40 +00:00
|
|
|
scripts/ci/recognize-match-hostname.sh
|
2021-10-04 17:21:14 +00:00
|
|
|
bundle exec fastlane preinstall_development_certs
|
2021-09-27 17:33:22 +00:00
|
|
|
- name: Build (macOS)
|
2021-10-01 12:32:08 +00:00
|
|
|
run: |
|
2021-10-04 17:21:14 +00:00
|
|
|
bundle exec fastlane --env mac,beta create_archive
|
2021-10-05 08:55:40 +00:00
|
|
|
scripts/ci/reset-archive.sh
|
2021-09-27 17:33:22 +00:00
|
|
|
- name: Build (iOS)
|
2021-10-01 12:32:08 +00:00
|
|
|
run: |
|
2021-10-04 17:21:14 +00:00
|
|
|
bundle exec fastlane --env ios,beta create_archive
|
2021-10-05 08:55:40 +00:00
|
|
|
scripts/ci/reset-archive.sh
|
2021-10-05 09:24:55 +00:00
|
|
|
- name: Upload to App Store (macOS)
|
|
|
|
run: |
|
|
|
|
bundle exec fastlane --env mac,beta store_deploy
|
|
|
|
- name: Upload to App Store (iOS)
|
|
|
|
run: |
|
|
|
|
bundle exec fastlane --env ios,beta store_deploy
|
|
|
|
submit_to_testflight:
|
|
|
|
runs-on: macos-10.15
|
|
|
|
needs: upload_to_app_store
|
|
|
|
environment:
|
|
|
|
name: testflight
|
|
|
|
env:
|
|
|
|
PILOT_USERNAME: ${{ secrets.PILOT_USERNAME }}
|
|
|
|
PILOT_GROUPS: ${{ secrets.PILOT_GROUPS }}
|
|
|
|
PILOT_BETA_APP_FEEDBACK: ${{ secrets.PILOT_BETA_APP_FEEDBACK }}
|
|
|
|
PILOT_BETA_APP_REVIEW_INFO: ${{ secrets.PILOT_BETA_APP_REVIEW_INFO }}
|
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
|
|
|
- name: Prepare Ruby bundle
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
|
|
|
bundler-cache: true
|
2021-10-04 17:21:14 +00:00
|
|
|
- name: Submit to TestFlight (macOS)
|
2021-10-01 12:32:08 +00:00
|
|
|
run: |
|
2021-10-05 09:24:55 +00:00
|
|
|
export PILOT_CHANGELOG=`ci/build-changelog.sh mac`
|
|
|
|
export PILOT_BUILD_NUMBER=`ci/build-number.sh`
|
|
|
|
bundle exec fastlane --env mac,beta beta_deploy
|
2021-09-27 17:33:22 +00:00
|
|
|
- name: Submit to TestFlight (iOS)
|
2021-10-01 12:32:08 +00:00
|
|
|
run: |
|
2021-10-05 09:24:55 +00:00
|
|
|
export PILOT_CHANGELOG=`ci/build-changelog.sh ios`
|
|
|
|
export PILOT_BUILD_NUMBER=`ci/build-number.sh`
|
|
|
|
bundle exec fastlane --env ios,beta beta_deploy
|
2021-10-06 10:24:49 +00:00
|
|
|
submit_for_app_review:
|
|
|
|
runs-on: macos-10.15
|
|
|
|
needs: submit_to_testflight
|
|
|
|
environment:
|
|
|
|
name: app_review
|
|
|
|
env:
|
|
|
|
DELIVER_USERNAME: ${{ secrets.DELIVER_USERNAME }}
|
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
|
|
|
- name: Prepare Ruby bundle
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
|
|
|
bundler-cache: true
|
|
|
|
- name: Update App Store Connect metadata (macOS)
|
|
|
|
run: |
|
|
|
|
ci/update-asc-metadata.sh mac
|
|
|
|
- name: Update App Store Connect metadata (iOS)
|
|
|
|
run: |
|
|
|
|
ci/update-asc-metadata.sh ios
|
|
|
|
- name: Submit for App Review (macOS)
|
|
|
|
run: |
|
|
|
|
bundle exec fastlane --env mac store_review
|
|
|
|
- name: Submit for App Review (iOS)
|
|
|
|
run: |
|
|
|
|
bundle exec fastlane --env ios store_review
|