From 7cafcbe1ca91c1ed7a0185fc8a5ee9c9aa089208 Mon Sep 17 00:00:00 2001 From: Paul Vecchio Date: Thu, 8 Feb 2024 10:24:53 -0800 Subject: [PATCH] Fix QR Code --- .github/workflows/eas.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/eas.yml b/.github/workflows/eas.yml index 7e7132d26..06416a211 100644 --- a/.github/workflows/eas.yml +++ b/.github/workflows/eas.yml @@ -42,12 +42,12 @@ jobs: affected_projects=$(yarn nx show projects --affected --withTarget eas-update) # Convert the list to a JSON matrix MATRIX_JSON=$(echo $affected_projects | jq -Rcs ' - split("\n") | - map(select(. != "")) | - if length == 0 then - {} - else - {include: map({project: .})} + split("\n") | + map(select(. != "")) | + if length == 0 then + {} + else + {include: map({project: .})} end' ) IS_MATRIX_EMPTY=$(echo $MATRIX_JSON | jq 'if type == "object" and length == 0 then true else false end') @@ -114,3 +114,4 @@ jobs: command: eas update --auto comment: true working-directory: apps/${{ matrix.project }} + qr-target: expo-go