Skip to content

Commit

Permalink
removed unecessary set secret -- it's an environment variable not a l…
Browse files Browse the repository at this point in the history
…iteral
  • Loading branch information
Jared Petersen committed Jul 16, 2020
1 parent 034b7a7 commit 2d0e474
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
3 changes: 0 additions & 3 deletions dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28706,9 +28706,6 @@ function run() {
if (gpgPrivateKey) {
core.setSecret(gpgPrivateKey);
}
if (gpgPassphrase) {
core.setSecret(gpgPassphrase);
}
yield auth.configAuthentication(id, username, password, gpgPassphrase);
if (gpgPrivateKey) {
core.info('importing private key');
Expand Down
4 changes: 0 additions & 4 deletions src/setup-java.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,6 @@ async function run() {
core.setSecret(gpgPrivateKey);
}

if (gpgPassphrase) {
core.setSecret(gpgPassphrase);
}

await auth.configAuthentication(id, username, password, gpgPassphrase);

if (gpgPrivateKey) {
Expand Down

0 comments on commit 2d0e474

Please sign in to comment.