Skip to content

Commit

Permalink
fix partial
Browse files Browse the repository at this point in the history
  • Loading branch information
VladyslavBondarenko committed Dec 10, 2021
1 parent 339240a commit 83e0188
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion algolia.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const newObjects = JSON.parse(fs.readFileSync('./public/index.json'))
...newObject,
objectID: newObject.uri,
}))
.filter(({ uri }) => uri !== '/404/')
.filter(({ uri }) => uri !== '/404/' && !uri.startsWith('/partials/'))

const findObjectById = (objects, target) => objects.find(({ objectID }) => objectID === target)

Expand Down
3 changes: 0 additions & 3 deletions content/partials/app-store-connect-api-key.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---
draft: true
---

It is recommended to create a dedicated App Store Connect API key for Codemagic in [App Store Connect](https://appstoreconnect.apple.com/access/api). To do so:
Expand All @@ -10,8 +9,6 @@ It is recommended to create a dedicated App Store Connect API key for Codemagic
4. Click **Generate**.
5. As soon as the key is generated, you can see it added to the list of active keys. Click **Download API Key** to save the private key for later. Note that the key can only be downloaded once.

### abc

{{<notebox >}}
Take note of the **Issuer ID** above the table of active keys as well as the **Key ID** of the generated key as these will be required when setting up the Apple Developer Portal integration in the Codemagic UI.
{{</notebox>}}

0 comments on commit 83e0188

Please sign in to comment.