TestApp build (v1.33 №1387) of TW-1574-migrate-from-firebase-dynamic-links-to-universal-app-links #792
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: TestApp build | |
run-name: TestApp build (v${{ github.event.inputs.version }} №${{ github.event.inputs.build-number }}) of ${{ github.ref_name }} | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: Version | |
default: "1.33" | |
required: true | |
build-number: | |
description: Build number | |
required: true | |
ios: | |
type: boolean | |
description: iOS | |
default: true | |
required: true | |
android: | |
type: boolean | |
description: Android | |
default: true | |
required: true | |
jobs: | |
testapp-build: | |
name: Create new iOS / Android builds and upload them via TestApp | |
runs-on: macos-14 | |
environment: testapp | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v2 | |
- name: Repository setup | |
uses: ./.github/workflows/repository-setup | |
- name: Secrets setup | |
uses: ./.github/workflows/secrets-setup | |
with: | |
READ_ONLY_SIGNER_PUBLIC_KEY: ${{ vars.READ_ONLY_SIGNER_PUBLIC_KEY }} | |
READ_ONLY_SIGNER_PUBLIC_KEY_HASH: ${{ vars.READ_ONLY_SIGNER_PUBLIC_KEY_HASH }} | |
JITSU_ANALYTICS_KEY: ${{ vars.JITSU_ANALYTICS_KEY }} | |
JITSU_TRACKING_HOST: ${{ vars.JITSU_TRACKING_HOST }} | |
TEMPLE_WALLET_ROUTE3_AUTH_TOKEN: ${{ vars.TEMPLE_WALLET_ROUTE3_AUTH_TOKEN }} | |
TEMPLE_WALLET_EXOLIX_API_KEY: ${{ secrets.TEMPLE_WALLET_EXOLIX_API_KEY }} | |
TEMPLE_WALLET_EVERSTAKE_API_KEY: ${{ secrets.TEMPLE_WALLET_EVERSTAKE_API_KEY }} | |
TEMPLE_WALLET_EVERSTAKE_LINK_ID: ${{ secrets.TEMPLE_WALLET_EVERSTAKE_LINK_ID }} | |
TEMPLE_WALLET_UTORG_SID: ${{ secrets.TEMPLE_WALLET_UTORG_SID }} | |
TEMPLE_WALLET_API_URL: ${{ vars.TEMPLE_WALLET_API_URL }} | |
TEMPLE_WALLET_STAKING_API_URL: ${{ vars.TEMPLE_WALLET_STAKING_API_URL }} | |
TEZOS_METADATA_API_URL: ${{ vars.TEZOS_METADATA_API_URL }} | |
TEZOS_DEXES_API_URL: ${{ vars.TEZOS_DEXES_API_URL }} | |
FIREBASE_GOOGLE_SERVICE_ANDROID: ${{ secrets.FIREBASE_GOOGLE_SERVICE_ANDROID }} | |
FIREBASE_GOOGLE_SERVICE_IOS: ${{ secrets.FIREBASE_GOOGLE_SERVICE_IOS }} | |
UNIVERSAL_LINKS_DOMAIN_URI_PREFIX: ${{ secrets.UNIVERSAL_LINKS_DOMAIN_URI_PREFIX }} | |
HYPELAB_AD_FRAME_URL: ${{ vars.HYPELAB_AD_FRAME_URL }} | |
HYPELAB_SMALL_PLACEMENT_SLUG: ${{ vars.HYPELAB_SMALL_PLACEMENT_SLUG }} | |
HYPELAB_NATIVE_PLACEMENT_SLUG: ${{ vars.HYPELAB_NATIVE_PLACEMENT_SLUG }} | |
PERSONA_PLACEMENT_SLUG: ${{ vars.PERSONA_PLACEMENT_SLUG }} | |
APPSTORE_AUTHKEY: ${{ secrets.APPSTORE_AUTHKEY }} | |
GOOGLE_PLAY_AUTHKEY: ${{ secrets.GOOGLE_PLAY_AUTHKEY }} | |
KEYSTORE_KEY: ${{ secrets.KEYSTORE_KEY }} | |
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} | |
# Android | |
- name: Setup Java SDK | |
if: ${{ github.event.inputs.android == 'true' }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- name: Update Android version | |
if: ${{ github.event.inputs.android == 'true' }} | |
uses: damienaicheh/update-android-version-gradle-action@v1.0.0 | |
with: | |
build-gradle-path: android/app/build.gradle | |
version-name: ${{ github.event.inputs.version }} | |
version-code: ${{ github.event.inputs.build-number }} | |
- name: Build Android | |
if: ${{ github.event.inputs.android == 'true' }} | |
run: yarn android:release:apk | |
- name: Retain Android artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: android | |
path: android/app/build/outputs/apk/release/app-release.apk | |
if-no-files-found: warn | |
retention-days: 30 | |
- name: Upload Android artifact to TestApp.io | |
if: ${{ github.event.inputs.android == 'true' }} | |
uses: testappio/github-action@v5 | |
with: | |
api_token: ${{ secrets.TESTAPPIO_API_TOKEN }} | |
app_id: ${{ secrets.TESTAPPIO_APP_ID }} | |
file: android/app/build/outputs/apk/release/app-release.apk | |
release_notes: ${{env.GIT_BRANCH_NAME}} Android | |
git_release_notes: false | |
include_git_commit_id: false | |
notify: true | |
# iOS | |
- name: Enable automatic code signing | |
run: cd ios && ./enable_automatic_code_signing.sh | |
- name: Install Pods | |
if: ${{ github.event.inputs.ios == 'true' }} | |
run: | | |
export NO_FLIPPER=1 | |
yarn ios:pods | |
- name: Update iOS version | |
if: ${{ github.event.inputs.ios == 'true' }} | |
uses: damienaicheh/update-ios-version-info-plist-action@v1.0.0 | |
with: | |
info-plist-path: ios/TempleWallet/Info.plist | |
bundle-short-version-string: ${{ github.event.inputs.version }} | |
bundle-version: ${{ github.event.inputs.build-number }} | |
- name: Build iOS | |
if: ${{ github.event.inputs.ios == 'true' }} | |
uses: yukiarrr/ios-build-action@v1.5.0 | |
with: | |
project-path: ios/TempleWallet.xcodeproj | |
workspace-path: ios/TempleWallet.xcworkspace | |
scheme: TempleWallet | |
export-method: ad-hoc | |
export-options: ios/TempleWallet/TestAppExportOptions.plist | |
configuration: Release | |
output-path: ios/build/TempleWallet.ipa | |
p12-base64: ${{ secrets.P12_BASE64 }} | |
certificate-password: ${{ secrets.P12_PASSWORD }} | |
mobileprovision-base64: ${{ secrets.ADHOC_MOBILEPROVISION_BASE64 }} | |
code-signing-identity: ${{ secrets.CODE_SIGNING_IDENTITY }} | |
team-id: ${{ secrets.TEAM_ID }} | |
- name: Retain iOS artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ios | |
path: ios/build/TempleWallet.ipa | |
if-no-files-found: warn | |
retention-days: 30 | |
- name: Upload iOS artifact to TestApp.io | |
if: ${{ github.event.inputs.ios == 'true' }} | |
uses: testappio/github-action@v5 | |
with: | |
api_token: ${{ secrets.TESTAPPIO_API_TOKEN }} | |
app_id: ${{ secrets.TESTAPPIO_APP_ID }} | |
file: ios/build/TempleWallet.ipa | |
release_notes: ${{env.GIT_BRANCH_NAME}} iOS | |
git_release_notes: false | |
include_git_commit_id: false | |
notify: true |