Skip to content

Commit 2d0e474

Browse files
committed
removed unecessary set secret -- it's an environment variable not a literal
1 parent 034b7a7 commit 2d0e474

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

dist/setup/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28706,9 +28706,6 @@ function run() {
2870628706
if (gpgPrivateKey) {
2870728707
core.setSecret(gpgPrivateKey);
2870828708
}
28709-
if (gpgPassphrase) {
28710-
core.setSecret(gpgPassphrase);
28711-
}
2871228709
yield auth.configAuthentication(id, username, password, gpgPassphrase);
2871328710
if (gpgPrivateKey) {
2871428711
core.info('importing private key');

src/setup-java.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,6 @@ async function run() {
4040
core.setSecret(gpgPrivateKey);
4141
}
4242

43-
if (gpgPassphrase) {
44-
core.setSecret(gpgPassphrase);
45-
}
46-
4743
await auth.configAuthentication(id, username, password, gpgPassphrase);
4844

4945
if (gpgPrivateKey) {

0 commit comments

Comments
 (0)