We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bd0d75 commit 53f2a68Copy full SHA for 53f2a68
1 file changed
.github/workflows/remote-build-android.yml
@@ -11,6 +11,23 @@ concurrency:
11
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
12
13
jobs:
14
+ fingerprint:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
19
+
20
+ - name: Setup Node
21
+ uses: ./.github/actions/composite/setupNode
22
+ with:
23
+ IS_HYBRID_BUILD: 'false'
24
25
+ - name: Run RNEF Fingerprint
26
+ run: |
27
+ FINGERPRINT_OUTPUT=$(npx rnef fingerprint -p android --raw 2>&1)
28
+ echo "FINGERPRINT_OUTPUT:"
29
+ echo "$FINGERPRINT_OUTPUT"
30
31
build:
32
runs-on: ${{ github.repository_owner == 'Expensify' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
33
strategy:
0 commit comments