Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
#!components: grid-bot

Signed-off-by: Nikita Petko <petko@vmminfra.net>
  • Loading branch information
nikita-petko authored Sep 2, 2024
1 parent 15e1dce commit bb6134f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,15 @@ jobs:
return;
}
const lsCommand = `ls -la ${deployDirectory}`
try {
child_process.execSync(lsCommand, { stdio: 'inherit' });
} catch (error) {
core.setFailed(`Failed to ls component ${component}`);
return;
}
}
Expand Down

0 comments on commit bb6134f

Please sign in to comment.