diff --git a/dist/index.js b/dist/index.js index a6afd712..a19f106b 100644 Binary files a/dist/index.js and b/dist/index.js differ diff --git a/src/auth.ts b/src/auth.ts index a7762a96..96051dd4 100644 --- a/src/auth.ts +++ b/src/auth.ts @@ -124,8 +124,12 @@ async function remove(path: string) { async function importGPG(gpgPrivateKey: string) { await write(TEMP_DIR, PRIVATE_KEY_FILE, gpgPrivateKey); - await exec.exec('gpg', ['--homedir', GPG_HOME_DIR, '--import', '--batch', PRIVATE_KEY_FILE], { - cwd: TEMP_DIR - }); + await exec.exec( + 'gpg', + ['--homedir', GPG_HOME_DIR, '--import', '--batch', PRIVATE_KEY_FILE], + { + cwd: TEMP_DIR + } + ); await remove(path.join(TEMP_DIR, PRIVATE_KEY_FILE)); }