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 {