Skip to content

Commit

Permalink
More debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewGable committed Oct 2, 2024
1 parent e4c4aa3 commit eb7ea6d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ jobs:

- name: Build Android app
if: ${{ !fromJSON(env.SHOULD_DEPLOY_PRODUCTION) }}
run: bundle exec fastlane android build_hybrid keystore_file:'./my-upload-key.keystore' keystore_password:${{ steps.load-credentials.outputs.ANDROID_UPLOAD_KEYSTORE_PASSWORD }} key_alias:${{ steps.load-credentials.outputs.ANDROID_UPLOAD_KEYSTORE_ALIAS }} key_password:${{ steps.load-credentials.outputs.ANDROID_UPLOAD_KEY_PASSWORD }}
run: bundle exec fastlane android build_hybrid keystore_file:'./upload-key.keystore' keystore_password:${{ steps.load-credentials.outputs.ANDROID_UPLOAD_KEYSTORE_PASSWORD }} key_alias:${{ steps.load-credentials.outputs.ANDROID_UPLOAD_KEYSTORE_ALIAS }} key_password:${{ steps.load-credentials.outputs.ANDROID_UPLOAD_KEY_PASSWORD }}

- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
Expand Down Expand Up @@ -566,6 +566,12 @@ jobs:
if: ${{ !fromJSON(env.SHOULD_DEPLOY_PRODUCTION) }}
run: bundle exec fastlane ios build_hybrid

- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ failure() }}
with:
limit-access-to-actor: true

# - name: Upload release build to TestFlight
# if: ${{ !fromJSON(env.SHOULD_DEPLOY_PRODUCTION) }}
# run: bundle exec fastlane ios upload_testflight
Expand Down
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -268,11 +268,11 @@ platform :ios do
setupIOSSigningCertificate()

install_provisioning_profile(
path: "../Mobile-Expensify/iOS/OldApp_AppStore.mobileprovision"
path: "./OldApp_AppStore.mobileprovision"
)

install_provisioning_profile(
path: "../Mobile-Expensify/iOS/OldApp_AppStore_Share_Extension.mobileprovision"
path: "./OldApp_AppStore_Share_Extension.mobileprovision"
)

build_app(
Expand Down

0 comments on commit eb7ea6d

Please sign in to comment.