From 4b194d31ca7a5e7e68d1b18442d51491c68999b6 Mon Sep 17 00:00:00 2001 From: Nicolas Ayral Seydoux Date: Mon, 16 Sep 2024 14:38:47 +0200 Subject: [PATCH 1/4] Add missing field for EAS Github integration --- eas.json | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/eas.json b/eas.json index 79a0447..b7226df 100644 --- a/eas.json +++ b/eas.json @@ -15,24 +15,29 @@ }, "preview": { "distribution": "internal", + "credentialsSource": "local", "env": { "EXPO_PUBLIC_LOGIN_URL" : "https://datawallet.inrupt.com/oauth2/authorization/wallet-app", "EXPO_PUBLIC_WALLET_API": "https://datawallet.inrupt.com" - } - }, - "preview-ios": { - "distribution": "internal", - "env": { - "EXPO_PUBLIC_LOGIN_URL" : "https://datawallet.inrupt.com/oauth2/authorization/wallet-app", - "EXPO_PUBLIC_WALLET_API": "https://datawallet.inrupt.com" }, - "credentialsSource": "local" + "android": { + "image": "latest" + }, + "ios": { + "image": "latest" + } }, "production": { "autoIncrement": true, "env": { "EXPO_PUBLIC_LOGIN_URL" : "https://datawallet.inrupt.com/oauth2/authorization/wallet-app", "EXPO_PUBLIC_WALLET_API": "https://datawallet.inrupt.com" + }, + "android": { + "image": "latest" + }, + "ios": { + "image": "latest" } } }, From 216f48016438ab384fd8afffe328017fd79d9cdf Mon Sep 17 00:00:00 2001 From: Nicolas Ayral Seydoux Date: Mon, 16 Sep 2024 14:40:18 +0200 Subject: [PATCH 2/4] Run CD From 561651123c2aba4387909b67ff0a9b86e6ce763f Mon Sep 17 00:00:00 2001 From: Nicolas Ayral Seydoux Date: Mon, 16 Sep 2024 14:43:07 +0200 Subject: [PATCH 3/4] Match on CLI version range --- eas.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eas.json b/eas.json index b7226df..fddddfb 100644 --- a/eas.json +++ b/eas.json @@ -1,6 +1,6 @@ { "cli": { - "version": "12.3.0", + "version": "^12.4.0", "appVersionSource": "remote", "requireCommit": true }, From a742c9e328ec345eb6ba83c3c8b03a84174b3df8 Mon Sep 17 00:00:00 2001 From: Nicolas Ayral Seydoux Date: Mon, 16 Sep 2024 14:47:25 +0200 Subject: [PATCH 4/4] Restore preview credentials source --- eas.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/eas.json b/eas.json index fddddfb..193cc5d 100644 --- a/eas.json +++ b/eas.json @@ -1,6 +1,6 @@ { "cli": { - "version": "^12.4.0", + "version": "^12.3.0", "appVersionSource": "remote", "requireCommit": true }, @@ -15,7 +15,6 @@ }, "preview": { "distribution": "internal", - "credentialsSource": "local", "env": { "EXPO_PUBLIC_LOGIN_URL" : "https://datawallet.inrupt.com/oauth2/authorization/wallet-app", "EXPO_PUBLIC_WALLET_API": "https://datawallet.inrupt.com" @@ -27,6 +26,20 @@ "image": "latest" } }, + "preview-ios": { + "distribution": "internal", + "env": { + "EXPO_PUBLIC_LOGIN_URL" : "https://datawallet.inrupt.com/oauth2/authorization/wallet-app", + "EXPO_PUBLIC_WALLET_API": "https://datawallet.inrupt.com" + }, + "android": { + "image": "latest" + }, + "ios": { + "image": "latest" + }, + "credentialsSource": "local" + }, "production": { "autoIncrement": true, "env": {