From a6a6eb195bf4011e862b09229f251162f397c5da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simen=20Sigurdsen=20R=C3=B8stad?= <42843330+simensrostad@users.noreply.github.com> Date: Tue, 12 Nov 2024 12:40:05 +0100 Subject: [PATCH] index: Add hello nrf cloud OOB firmware to app index (#52) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add hello nrf cloud OOB firmware to app index Signed-off-by: Simen S. Røstad --- index/hello-nrfcloud.json | 21 +++++++++++++++++++++ scripts/generate-index-json.ts | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 index/hello-nrfcloud.json diff --git a/index/hello-nrfcloud.json b/index/hello-nrfcloud.json new file mode 100644 index 0000000..607e6d0 --- /dev/null +++ b/index/hello-nrfcloud.json @@ -0,0 +1,21 @@ +{ + "name": "Thingy:91 X: Hello nRF Cloud firmware", + "description": "", + "apps": [ + { + "title": "Thingy:91 X: Hello nRF Cloud firmware", + "name": "firmware", + "description": "This firmware is used with hello.nrfcloud.com", + "kind": "sample", + "tags": ["dfu", "lte"], + "releases": [ + { + "date": "2024-08-11T14:37:00Z", + "name": "v2.0.1", + "tag": "v2.0.1", + "sdk": "v2.8.0-rc2" + } + ] + } + ] +} diff --git a/scripts/generate-index-json.ts b/scripts/generate-index-json.ts index 9ac5252..119b98f 100644 --- a/scripts/generate-index-json.ts +++ b/scripts/generate-index-json.ts @@ -22,7 +22,7 @@ import type { import { ParsedOrgFile, readOrgIndexFiles } from './orgFiles'; import { execSync } from 'child_process'; -const nordicOrgs: string[] = ['nrfconnect', 'nordic', 'nordicplayground']; +const nordicOrgs: string[] = ['nrfconnect', 'nordic', 'nordicplayground', 'hello-nrfcloud']; const partnerOrgs: string[] = ['golioth', 'blecon']; function notUndefined(value: T | undefined): value is T {