Add missing semicolons (#159)

Follow-up to #154
This commit is contained in:
Dilum Aluthge 2023-01-28 02:20:24 -05:00 committed by GitHub
parent 9fbc246995
commit ea17a056b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
dist/index.js vendored
View file

@ -332,9 +332,9 @@ try {
const sshAddCmdInput = core.getInput('ssh-add-cmd');
const gitCmdInput = core.getInput('git-cmd');
const sshAgentCmd = sshAgentCmdInput ? sshAgentCmdInput : sshAgentCmdDefault
const sshAddCmd = sshAddCmdInput ? sshAddCmdInput : sshAddCmdDefault
const gitCmd = gitCmdInput ? gitCmdInput : gitCmdDefault
const sshAgentCmd = sshAgentCmdInput ? sshAgentCmdInput : sshAgentCmdDefault;
const sshAddCmd = sshAddCmdInput ? sshAddCmdInput : sshAddCmdDefault;
const gitCmd = gitCmdInput ? gitCmdInput : gitCmdDefault;
if (!privateKey) {
core.setFailed("The ssh-private-key argument is empty. Maybe the secret has not been configured, or you are using a wrong secret name in your workflow file.");