Merge pull request #129 from millicast/bug_fix/android_tv_user_input_… #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Interactive Player RN - iOS and tvOS Build and Distribution | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
Build-And-Deploy-iOS-App-To-Appstore: | |
runs-on: macos-13 | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- name: Checkout LFS objects | |
run: git lfs pull | |
- uses: actions/setup-node@v3 | |
- name: Install modules | |
run: yarn install | |
- name: Create internal environment | |
env: | |
ENV: ${{secrets.ENV}} | |
run: | | |
echo $ENV > .env | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.1.2 | |
- name: Setup Bundler | |
run: | | |
cd ios | |
gem install bundler | |
bundle install | |
bundle exec pod install | |
- name: Build iOS App and Upload to Appstore | |
env: | |
TEMP_KEYCHAIN_NAME: ${{ secrets.TEMP_KEYCHAIN_NAME_APPSTORE }} | |
TEMP_KEYCHAIN_PASSWORD: ${{ secrets.TEMP_KEYCHAIN_PASSWORD_APPSTORE }} | |
CERTIFICATE_BASE64: ${{ secrets.CERTIFICATE_BASE64_APPSTORE }} | |
P12_PASSWORD: ${{ secrets.P12_PASSWORD_APPSTORE }} | |
PROVISIONING_PROFILE_BASE64: ${{ secrets.IOS_INTERACTIVE_PLAYER_PROFILE_BASE64_APPSTORE }} | |
EXPORT_OPTIONS_PLIST_BASE64: ${{ secrets.IOS_INTERACTIVE_PLAYER_EXPORT_OPTIONS_PLIST_BASE64_APPSTORE }} | |
APPSTORE_CONNECT_KEY_ID: ${{ secrets.APPSTORE_CONNECT_KEY_ID }} | |
APPSTORE_CONNECT_ISSUER_ID: ${{ secrets.APPSTORE_CONNECT_ISSUER_ID }} | |
APPSTORE_CONNECT_KEY_CONTENT: ${{ secrets.APPSTORE_CONNECT_KEY_CONTENT }} | |
run: | | |
cd ios | |
bundle exec fastlane build_and_deploy_to_appstore --env testapp-ios-appstore build_number:$GITHUB_RUN_NUMBER | |
- name: Build tvOS App and Upload to Appstore | |
env: | |
TEMP_KEYCHAIN_NAME: ${{ secrets.TEMP_KEYCHAIN_NAME_APPSTORE }} | |
TEMP_KEYCHAIN_PASSWORD: ${{ secrets.TEMP_KEYCHAIN_PASSWORD_APPSTORE }} | |
CERTIFICATE_BASE64: ${{ secrets.CERTIFICATE_BASE64_APPSTORE }} | |
P12_PASSWORD: ${{ secrets.P12_PASSWORD_APPSTORE }} | |
PROVISIONING_PROFILE_BASE64: ${{ secrets.TVOS_INTERACTIVE_PLAYER_PROFILE_BASE64_APPSTORE }} | |
EXPORT_OPTIONS_PLIST_BASE64: ${{ secrets.TVOS_INTERACTIVE_PLAYER_EXPORT_OPTIONS_PLIST_BASE64_APPSTORE }} | |
APPSTORE_CONNECT_KEY_ID: ${{ secrets.APPSTORE_CONNECT_KEY_ID }} | |
APPSTORE_CONNECT_ISSUER_ID: ${{ secrets.APPSTORE_CONNECT_ISSUER_ID }} | |
APPSTORE_CONNECT_KEY_CONTENT: ${{ secrets.APPSTORE_CONNECT_KEY_CONTENT }} | |
run: | | |
cd ios | |
bundle exec fastlane build_and_deploy_to_appstore --env testapp-tvos-appstore build_number:$GITHUB_RUN_NUMBER | |
- name: 'Upload Artifacts' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build_artifacts_appstore | |
path: | | |
ios/artifacts | |
retention-days: 60 |