Skip to content

Commit

Permalink
Remove obtention of git author information
Browse files Browse the repository at this point in the history
  • Loading branch information
dloez committed Feb 11, 2024
1 parent f81f519 commit 571ac4f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
6 changes: 0 additions & 6 deletions action/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26020,12 +26020,6 @@ function setupDownloadRun() {
}
function run() {
return __awaiter(this, void 0, void 0, function* () {
const { stdout, stderr } = yield exec.getExecOutput('ls', [
'-l'
]);
const [name, email] = yield getCurrentGitAuthor();
core.debug(`Git author name: ${name}`);
core.debug(`Git author email: ${email}`);
setupDownloadRun();
});
}
Expand Down
7 changes: 0 additions & 7 deletions action/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,6 @@ async function setupDownloadRun() {
}

async function run() {
const {stdout, stderr} = await exec.getExecOutput('ls', [
'-l'
])
const [name, email] = await getCurrentGitAuthor()
core.debug(`Git author name: ${name}`)
core.debug(`Git author email: ${email}`)

setupDownloadRun()
}

Expand Down

0 comments on commit 571ac4f

Please sign in to comment.