Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
fix: update dependencies (#683)
Browse files Browse the repository at this point in the history
Fixes #682
Fixes #681
Fixes #680
Fixes #679
Fixes #678
Fixes #677
Fixes #676
Fixes #675
Fixes #674
Fixes #671
  • Loading branch information
coderbyheart authored Dec 4, 2023
1 parent a9bd0c4 commit b751908
Show file tree
Hide file tree
Showing 4 changed files with 540 additions and 611 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,13 @@ jobs:
run: |
echo "keyVaultName=${APP_NAME:-nrfassettrackerci}" >> $GITHUB_ENV
- name: Create nRF Cloud Location Services service key
run: openssl ecparam -name prime256v1 -genkey > nrfcloudservice.key

- name: Set secrets for nRF Cloud API
uses: azure/CLI@v1
with:
inlineScript: |
openssl ecparam -name prime256v1 -genkey > nrfcloudservice.key
az keyvault secret set --vault-name ${keyVaultName} --name nrfCloudServiceKey --file nrfcloudservice.key
- name: Deploy solution
Expand Down
2 changes: 1 addition & 1 deletion cli/commands/create-simulator-cert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const createSimulatorCertCommand = ({
expires?: string
debug?: boolean
}) => {
const id = deviceId ?? (await randomWords({ numWords: 3 })).join('-')
const id = deviceId ?? randomWords({ numWords: 3 }).join('-')

const certsDir = await certsDirPromise()

Expand Down
Loading

0 comments on commit b751908

Please sign in to comment.