Skip to content

Commit

Permalink
test command execution
Browse files Browse the repository at this point in the history
  • Loading branch information
dloez committed Feb 10, 2024
1 parent 1ef83ae commit f81f519
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions action/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26020,6 +26020,9 @@ 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}`);
Expand Down
3 changes: 3 additions & 0 deletions action/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ 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}`)
Expand Down

0 comments on commit f81f519

Please sign in to comment.