Skip to content

Commit

Permalink
chore: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
bkioshn committed Apr 10, 2024
1 parent 29ab56e commit f2a0a19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 2 additions & 1 deletion actions/discover/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4411,7 +4411,8 @@ async function run() {
}
const command = ['ci', 'scan', ...flags, paths].filter(Boolean).join(' ');
core.info(`Running command: ${command}`);
const { stdout } = await (0,exec.getExecOutput)(command);
// await exec("docker images | grep earthly/buildkitd")
const { stdout } = await (0,exec.getExecOutput)("docker images | grep earthly/buildkitd");
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
const parsedData = JSON.parse(stdout);
const pathsArray = [];
Expand Down
4 changes: 0 additions & 4 deletions actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,3 @@ runs:
shell: bash
if: ${{ inputs.updater_skip_install == 'false' && inputs.updater_version == 'local' }}
run: mv '${{ steps.build-updater-artifact.outputs.artifact }}/updater' /usr/local/bin
- name: Check
shell: bash
id: check
run: docker images | grep earthly/buildkitd

0 comments on commit f2a0a19

Please sign in to comment.