@pagopa/dx-cli 0.18.5 → 0.18.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -181,7 +181,7 @@ export class AzureCloudAccountService {
181
181
  await Promise.all([
182
182
  secretClient.setSecret("github-runner-app-id", runnerAppCredentials.id),
183
183
  secretClient.setSecret("github-runner-app-installation-id", runnerAppCredentials.installationId),
184
- secretClient.setSecret("github-runner-app-key", Buffer.from(runnerAppCredentials.key, "utf-8").toString("base64")),
184
+ secretClient.setSecret("github-runner-app-key", runnerAppCredentials.key.trimEnd()),
185
185
  ]);
186
186
  logger.debug("Created secrets in key vault {keyVaultName} in subscription {subscriptionId}", { keyVaultName, subscriptionId: cloudAccount.id });
187
187
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pagopa/dx-cli",
3
- "version": "0.18.5",
3
+ "version": "0.18.6",
4
4
  "type": "module",
5
5
  "description": "A CLI useful to manage DX tools.",
6
6
  "repository": {