Skip to content

Commit

Permalink
testing docker action
Browse files Browse the repository at this point in the history
  • Loading branch information
Uroš Marolt committed Jan 9, 2024
1 parent a383354 commit 43de855
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/actions/node/builder/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26353,10 +26353,10 @@ const buildStep = async () => {
const exitCode = await exec.exec('bash', ['cli', 'build', image, tag], {
listeners: {
stdout: (data) => {
core.info(`${image} builder: ${data.toString()}`);
core.info(data.toString());
},
stderr: (data) => {
core.error(`${image} builder error: ${data.toString()}`);
core.info(data.toString());
},
},
cwd: './scripts',
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/node/src/steps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ export const buildStep = async (): Promise<void> => {
const exitCode = await exec.exec('bash', ['cli', 'build', image, tag], {
listeners: {
stdout: (data) => {
core.info(`${image} builder: ${data.toString()}`)
core.info(data.toString())
},
stderr: (data) => {
core.error(`${image} builder error: ${data.toString()}`)
core.info(data.toString())
},
},
cwd: './scripts',
Expand Down

0 comments on commit 43de855

Please sign in to comment.