Merge pull request #61205 from shubham1206agra/fix-cancellation-text #2
This file contains hidden or 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: Remote Build Android | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches-ignore: [staging, production] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| build: | |
| runs-on: ${{ github.repository_owner == 'Expensify' && 'ubuntu-latest-xl' || 'ubuntu-latest' }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - variant: 'developmentDebug' | |
| is_hybrid_build: false | |
| - variant: 'Debug' | |
| is_hybrid_build: true | |
| steps: | |
| - name: Checkout | |
| # v4 | |
| uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 | |
| with: | |
| submodules: ${{ matrix.is_hybrid_build || false }} | |
| token: ${{ secrets.OS_BOTIFY_TOKEN }} | |
| - name: Setup Node | |
| uses: ./.github/actions/composite/setupNode | |
| with: | |
| IS_HYBRID_BUILD: ${{ matrix.is_hybrid_build && 'true' || 'false' }} | |
| - name: RNEF Remote Build - Android | |
| uses: callstackincubator/android@333f590005be752c28f07e36fa7151be3b2e18da | |
| env: | |
| IS_HYBRID_APP: ${{ matrix.is_hybrid_build }} | |
| with: | |
| variant: ${{ matrix.variant }} | |
| github-token: ${{ github.token }} | |
| comment-bot: false |