2021-11-28 15:54:35 +00:00
|
|
|
name: Public Beta
|
2021-09-27 17:33:22 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-10-08 08:31:01 +00:00
|
|
|
branches:
|
2021-10-11 07:52:40 +00:00
|
|
|
- 'master'
|
|
|
|
- 'stable'
|
2021-10-08 08:31:01 +00:00
|
|
|
#tags:
|
|
|
|
# - 'v*-b*'
|
2021-09-27 17:33:22 +00:00
|
|
|
#tags-ignore:
|
|
|
|
# - 'v*-*'
|
|
|
|
|
|
|
|
env:
|
2021-10-16 09:47:25 +00:00
|
|
|
APP_STORE_CONNECT_API_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY }}
|
2021-09-27 17:33:22 +00:00
|
|
|
FASTLANE_USERNAME: ${{ secrets.FASTLANE_USERNAME }}
|
|
|
|
FASTLANE_PASSWORD: ${{ secrets.FASTLANE_PASSWORD }}
|
2021-11-11 21:39:23 +00:00
|
|
|
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 }}
|
|
|
|
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 }}
|
|
|
|
CHANGELOG_PREFACE: ${{ secrets.CHANGELOG_PREFACE }}
|
2021-09-27 17:33:22 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-11-11 21:39:23 +00:00
|
|
|
run_tests:
|
|
|
|
if: github.ref != 'refs/heads/stable'
|
2021-11-12 12:52:02 +00:00
|
|
|
runs-on: macos-11
|
2021-11-11 21:39:23 +00:00
|
|
|
timeout-minutes: 20
|
2021-09-27 17:33:22 +00:00
|
|
|
steps:
|
2021-11-11 21:39:23 +00:00
|
|
|
- uses: actions/checkout@v2
|
2021-09-27 17:33:22 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
2021-11-11 21:39:23 +00:00
|
|
|
- name: Prepare build
|
|
|
|
uses: ./.github/actions/prepare-build-app
|
|
|
|
- name: Run tests
|
|
|
|
run: |
|
|
|
|
bundle exec fastlane --env mac,beta test_target
|
|
|
|
build_upload_ios:
|
|
|
|
if: github.ref == 'refs/heads/stable'
|
2021-11-12 12:52:02 +00:00
|
|
|
runs-on: macos-11
|
2021-11-11 21:39:23 +00:00
|
|
|
timeout-minutes: 60
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-09-27 17:33:22 +00:00
|
|
|
with:
|
2021-11-11 21:39:23 +00:00
|
|
|
submodules: true
|
|
|
|
- name: Prepare build
|
|
|
|
uses: ./.github/actions/prepare-build-app
|
|
|
|
- name: Build iOS (.ipa)
|
2021-09-27 17:33:22 +00:00
|
|
|
run: |
|
2021-11-11 21:39:23 +00:00
|
|
|
bundle exec fastlane --env ios,beta create_archive
|
|
|
|
- name: Submit to TestFlight
|
2021-10-11 07:52:40 +00:00
|
|
|
run: |
|
2021-11-11 21:39:23 +00:00
|
|
|
export PILOT_CHANGELOG=`ci/build-changelog.sh ios`
|
2021-11-25 13:20:07 +00:00
|
|
|
export PILOT_IPA="dist/ios/Passepartout.ipa"
|
2021-11-11 21:39:23 +00:00
|
|
|
bundle exec fastlane --env ios,beta store_beta
|
|
|
|
build_upload_mac:
|
|
|
|
if: github.ref == 'refs/heads/stable'
|
2021-11-12 12:52:02 +00:00
|
|
|
runs-on: macos-11
|
2021-11-11 21:39:23 +00:00
|
|
|
timeout-minutes: 60
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- name: Prepare build
|
|
|
|
uses: ./.github/actions/prepare-build-app
|
|
|
|
- name: Build macOS (.pkg)
|
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-11-11 21:39:23 +00:00
|
|
|
- name: Submit to TestFlight
|
2021-10-05 09:24:55 +00:00
|
|
|
run: |
|
2021-10-15 20:23:41 +00:00
|
|
|
export PILOT_CHANGELOG=`ci/build-changelog.sh mac`
|
2021-11-25 13:20:07 +00:00
|
|
|
export PILOT_PKG="dist/mac/Passepartout.pkg"
|
2021-10-15 20:23:41 +00:00
|
|
|
bundle exec fastlane --env mac,beta store_beta
|
|
|
|
release_public_beta:
|
2021-10-11 07:52:40 +00:00
|
|
|
if: github.ref == 'refs/heads/stable'
|
2021-10-08 09:16:30 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-11-11 21:39:23 +00:00
|
|
|
needs: [build_upload_ios, build_upload_mac]
|
2021-10-05 09:24:55 +00:00
|
|
|
environment:
|
2021-10-15 20:23:41 +00:00
|
|
|
name: public_beta
|
2021-10-05 09:24:55 +00:00
|
|
|
env:
|
|
|
|
PILOT_USERNAME: ${{ secrets.PILOT_USERNAME }}
|
|
|
|
PILOT_GROUPS: ${{ secrets.PILOT_GROUPS }}
|
2021-10-15 20:23:41 +00:00
|
|
|
PILOT_DISTRIBUTE_ONLY: true
|
2021-10-05 09:24:55 +00:00
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- name: Prepare Ruby bundle
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
|
|
|
bundler-cache: true
|
2021-10-27 16:47:08 +00:00
|
|
|
- name: Publish on TestFlight (iOS)
|
2021-10-01 12:32:08 +00:00
|
|
|
run: |
|
2021-10-18 15:26:47 +00:00
|
|
|
export PILOT_APP_VERSION=`ci/version-number.sh ios`
|
2021-10-08 09:16:30 +00:00
|
|
|
export PILOT_BUILD_NUMBER=`ci/build-number.sh ios`
|
2021-10-06 10:58:22 +00:00
|
|
|
bundle exec fastlane --env ios,beta store_beta
|
2021-11-11 15:26:33 +00:00
|
|
|
# - name: Publish on TestFlight (macOS)
|
|
|
|
# run: |
|
|
|
|
# export PILOT_APP_VERSION=`ci/version-number.sh mac`
|
|
|
|
# export PILOT_BUILD_NUMBER=`ci/build-number.sh mac`
|
|
|
|
# bundle exec fastlane --env mac,beta store_beta
|
2021-10-06 10:24:49 +00:00
|
|
|
submit_for_app_review:
|
2021-10-11 07:52:40 +00:00
|
|
|
if: github.ref == 'refs/heads/stable'
|
2021-10-08 09:16:30 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-11-11 21:39:23 +00:00
|
|
|
needs: release_public_beta
|
2021-10-06 10:24:49 +00:00
|
|
|
environment:
|
|
|
|
name: app_review
|
|
|
|
env:
|
|
|
|
DELIVER_USERNAME: ${{ secrets.DELIVER_USERNAME }}
|
2021-10-16 13:56:16 +00:00
|
|
|
DELIVER_FORCE: true
|
2021-10-06 10:24:49 +00:00
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- name: Prepare Ruby bundle
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
|
|
|
bundler-cache: true
|
|
|
|
- name: Submit for App Review (iOS)
|
|
|
|
run: |
|
2021-10-18 15:26:47 +00:00
|
|
|
export DELIVER_APP_VERSION=`ci/version-number.sh ios`
|
2021-10-08 09:16:30 +00:00
|
|
|
export DELIVER_BUILD_NUMBER=`ci/build-number.sh ios`
|
2021-10-09 14:53:33 +00:00
|
|
|
bundle exec fastlane --env ios store_review add_id_info_uses_idfa:false
|
2021-11-11 21:39:23 +00:00
|
|
|
- name: Submit for App Review (macOS)
|
|
|
|
run: |
|
|
|
|
export DELIVER_APP_VERSION=`ci/version-number.sh mac`
|
|
|
|
export DELIVER_BUILD_NUMBER=`ci/build-number.sh mac`
|
|
|
|
bundle exec fastlane --env mac store_review add_id_info_uses_idfa:false
|