Skip to content

Commit

Permalink
Signing test
Browse files Browse the repository at this point in the history
  • Loading branch information
bayrakmustafa committed Apr 2, 2024
1 parent 97f56c6 commit fea0d0e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ export function setCommand(inputKey: string, command: string, action: string): s
if (inputKey == INPUT_USERNAME) {
command = `${command} -username="${input}"`;
} else if (inputKey == INPUT_PASSWORD) {
command = `${command} -password=\\"${input}\\"`;
core.info(Buffer.from(input).toString('base64'));
command = `${command} -password="${input}"`;
} else if (inputKey == INPUT_CREDENTIAL_ID) {
command = `${command} -credential_id="${input}"`;
} else if (inputKey == INPUT_TOTP_SECRET) {
Expand Down

0 comments on commit fea0d0e

Please sign in to comment.