Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/remote-build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Remote Build Android

on:
workflow_dispatch:
inputs:
mobile_expensify_pr:
description: 'Mobile-Expensify PR number to use for hybrid build'
required: false
type: string
push:
branches-ignore: [staging, production, cherry-pick-*]
paths-ignore: ['docs/**', 'contributingGuides/**', 'help/**', '.github/**', 'scripts/**', 'tests/**']
Expand Down Expand Up @@ -35,6 +40,14 @@ jobs:
with:
IS_HYBRID_BUILD: ${{ matrix.is_hybrid_build && 'true' || 'false' }}

- name: Checkout specific Mobile-Expensify PR
if: ${{ matrix.is_hybrid_build && github.event.inputs.mobile_expensify_pr }}
run: |
cd Mobile-Expensify
git fetch origin pull/${{ github.event.inputs.mobile_expensify_pr }}/head:pr-${{ github.event.inputs.mobile_expensify_pr }}
git checkout pr-${{ github.event.inputs.mobile_expensify_pr }}
echo "Checked out Mobile-Expensify PR #${{ github.event.inputs.mobile_expensify_pr }}"

- name: RNEF Remote Build - Android
# rnef v2
uses: callstackincubator/android@d9a81f860e436ff2971323990244e32830dcabd1
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/remote-build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Remote Build iOS

on:
workflow_dispatch:
inputs:
mobile_expensify_pr:
description: 'Mobile-Expensify PR number to use for hybrid build'
required: false
type: string
push:
branches-ignore: [staging, production, cherry-pick-*]
paths-ignore: ['docs/**', 'contributingGuides/**', 'help/**', '.github/**', 'scripts/**', 'tests/**']
Expand Down Expand Up @@ -39,6 +44,14 @@ jobs:
with:
IS_HYBRID_BUILD: ${{ matrix.is_hybrid_build && 'true' || 'false' }}

- name: Checkout specific Mobile-Expensify PR
if: ${{ matrix.is_hybrid_build && github.event.inputs.mobile_expensify_pr }}
run: |
cd Mobile-Expensify
git fetch origin pull/${{ github.event.inputs.mobile_expensify_pr }}/head:pr-${{ github.event.inputs.mobile_expensify_pr }}
git checkout pr-${{ github.event.inputs.mobile_expensify_pr }}
echo "Checked out Mobile-Expensify PR #${{ github.event.inputs.mobile_expensify_pr }}"

- name: RNEF Remote Build - iOS
# rnef v2
uses: callstackincubator/ios@7847e0676242cefa801cba8ede6736140b7bae91
Expand Down